Reputation: 479
I use alfresco cloud.
I can authentificate, get my access_token, and access to a file by having a get request:
Now I want to update the content of the file. The doc say to use PUT request. Is what I did :
But I have this error :
{ "error":"invalid_request", "error_description":"Missing access token" }
Upvotes: 0
Views: 176
Reputation: 10538
As Gagravarr says, try putting your access token in the authorization field of the HTTP request header, like this: Bearer [your access token]
See "Using the Access Token" in the API documentation PDF.
Upvotes: 2