Reputation: 13
What permissions do I need to get the request digest of a SharePoint site using SharePoint's REST API?
If I have view only access to the site but I have contribute access to a list on the site can I still get the request digest?
Upvotes: 0
Views: 314
Reputation: 1263
As far as I know, by default it is required for user to have the Use Remote Interfaces
permission to access REST API and get the Request Digest. However, this requirement can be changed (e.g. in order to enable anonymous users to access REST API). More about that: What Every Developer Needs to Know About SharePoint Apps, CSOM, and Anonymous Publishing Sites
Upvotes: 0