Goal:
I want to specify privacy for posts, that are done through my application, when I post to a Page's wall, using Pagetoken.
Problem:
Using page token, I do post to URL "https://graph.facebook.com/me/feed" with the following body —
{
"message": "from app with security after requesting a username", "privacy": { "description": "Amsterdam, Netherlands, Netherlands", "value": "CUSTOM" }
}
An receive such a terrible answer —
{
"error": { "message": "(#100) Posts where the actor is a page cannot also include privacy.", "type": "OAuthException" }
}
Even through it is said in documentation, here - https://developers.facebook.com/docs/reference/api/page/#posts, that Pages#post.privacy is supported.
And explicitly:
"The description field may contain a comma-separated lists of valid country, city and language if a Page's post targeting by location/language is specified."
Please help me out, what am I doing wrong?