According to the documentation on Facebook:
"Create or update account for user
You can publish an account or user by sending an HTTP POST request to / USER_ID / points using the access_token application if you have publish_actions permission.
So, I get the access token from the access token tool. I also confirmed that publish_actions is allowed.
When I use the Explorer API for / USER_ID / points with an access token, I get the following error:
{ "error": { "message": "A user access token is required to request this resource.", "type": "OAuthException" } }
OK Therefore, I provide the user access token, and I get:
{ "error": { "message": "(#15) This method must be called with an app access_token.", "type": "OAuthException" } }
What am I doing wrong here?
EDIT: It works as long as authentication is set to WEB instead of Mobile / Native.
source share