Aakanksha
Aakanksha

Reputation: 1

Sharepoint, programmatically get user Permissions for Document Libraries

I am using web services to get user permissions for document librarys in sharepoint. I tried using "GetPermissionCollection" but it only works when the user has Full control. If the user has any other permission i get 401 error. Can someone please tell me a way to get the user permissions for document libraries.

Thanks and Regards, Aakanksha

Upvotes: 0

Views: 1611

Answers (1)

Kit Menke
Kit Menke

Reputation: 7056

This sounds like a permissions issue rather than a programming issue.

SharePoint web services respect security... in other words, you can't do anything using the web services you don't have permission to do. Either...

  1. Give the account you are using permission
  2. Use a different account that has permission

Upvotes: 1

Related Questions