So I have a Facebook Page (let's call it X), which has app Y on it. The user can ask a question via Y, and it gets posted to X as the user (not as the app).
My permissions for the app are currently set to publish_stream.
I can grab a token via
$token_url = "https://graph.facebook.com/oauth/access_token?" .
"client_id=" . $this -> data["environment"] -> fb_appid .
"&client_secret=" . $this -> data["environment"] -> fb_appsecret .
"&grant_type=client_credentials";
$app_token = file_get_contents($token_url);
which gives me a token just fine.
Now, if I try to POST via an APi call, I get two results:
When I do not pass the token and simply call
$post_id = $this ->Facebook->fb_api("/PAGE_ID/feed", "POST", array("message"=>"This is a post from PHP."));
I get a response back in the form of JSON
{
"id": "PAGEID_someOtherID"
}
but I do not see the post on the wall.
When I do pass the access token, ala
$post_id = $this ->Facebook->fb_api("/PAGE_ID/feed", "POST", array("access_token"=>$app_token,"message"=>"This is a post from PHP."));
my response comes back empty.
What am I doing wrong with such a simple concept?