I have an identifier for the created article, and I can also get the status of the article using the GET method:
{article_id}?access_token={access_token}
I get an answer like:
{ "id": {article_id}, "status": "SUCCESS" }
But when I try to delete the article using the DELETE method with the same parameters, I get this answer:
{ "error": { "message": "(#240) Requires a valid user to be specified (either via the session or via the API parameter for specifying the user.", "type": "OAuthException", "code": 240, "fbtrace_id": "GsXXXXBjq" } }
Everything was done in accordance with the documentation .
I am using v2.6 version of the graph with these permissions:
publish_pages, pages_manage_instant_articles, manage_pages
I use a page token that does not expire, I got it @ Simon.Ponder Reply .
I have only one admin user for the application and page.
How can this be solved?
source share