Hi guys this is my first post in here hope someone can help.
Using correct app access token still receive (#15) This method must be called with an app access_token cannot find help or answer anywhere.
I have read all the topics on this and I am doing everything correctly even using the access token tool and using that access token in the open graph explorer gives me the same response.
App is st up as game, the enable scores dialog is on the aggregations etc are set up as they use defaults when you turn on scores dialog, I cannot for the life of me find any answer that doesn't give what I have already done.
I have searched the net for two days and it is a major hold up with the release of a clients game, I have the rest of the graph api sussed its just this that is holding me up.
Really hope someone can help me get over this hurdle.
Thanks in advance.
$token_url = 'https://graph.facebook.com/oauth/access_token?'
. 'client_id=' . $fb_app_id
. '&client_secret=' . $fb_app_secret
. '&grant_type=client_credentials';
$token_response = file_get_contents($token_url);
$params = null;
parse_str($token_response, $params);
$app_access_token = $params['access_token'];
echo $app_access_token; // matches access token found in access token tool
$scoreUpdate = $facebook->api('/'.$userid.'/scores?score='.$score.'&access_token='.$app_access_token, 'post');
print_r($scoreUpdate);
$useridhas authorised your app and granted thepublish_actionspermission, right? If you're trying to update the score, that should be a POST request, either directly as a HTTP POST request, or by adding a&method=postparameter to the call – Igy Nov 4 '11 at 10:44