我想用 facebook app-graph 发送一个请求。有时成功但有时返回值失败:
{
"error": {
"message": "(#2) Failed to create any app request",
"type": "OAuthException",
"code": 2
}
}
请帮帮我..为什么会这样?呵呵
我想用 facebook app-graph 发送一个请求。有时成功但有时返回值失败:
{
"error": {
"message": "(#2) Failed to create any app request",
"type": "OAuthException",
"code": 2
}
}
请帮帮我..为什么会这样?呵呵
您需要使用应用程序发送应用程序对用户的请求access_token
。例如:
$param = array(
'message' => 'Check out the latest update',
'data' => 'some_data_string',
'access_token' => 'app_id|app_secret',
);
$tmp = $facebook->api("/[user_id]/apprequests", "POST", $param);
编辑:
请参阅facebook 文档以生成应用程序 access_token。该文档指出:
还有另一种无需使用生成的应用令牌即可调用 Graph API 的方法。您可以在拨打电话时将您的应用程序 ID 和应用程序密码作为 access_token 参数传递:
https://graph.facebook.com/endpoint?key=value&access_token=app_id|app_secret