我有一些facebook user_ids,由用户发送(他的朋友user_id) 我必须向所有人发送消息/应用程序请求。 我怎么能这样做?
是否有任何教程或解决方案..请帮助我
答案 0 :(得分:0)
facebook开发人员有示例脚本(对于php也是如此)。你试过this吗? php中生成的pp请求示例如下
<?php
$app_id = YOUR_APP_ID;
$app_secret = YOUR_APP_SECRET;
$token_url = "https://graph.facebook.com/oauth/access_token?" .
"client_id=" . $app_id .
"&client_secret=" . $app_secret .
"&grant_type=client_credentials";
$app_access_token = file_get_contents($token_url);
$user_id = THE_CURRENT_USER_ID;
$apprequest_url ="https://graph.facebook.com/" .
$user_id .
"/apprequests?message=’INSERT_UT8_STRING_MSG’" .
"&data=’INSERT_STRING_DATA’&" .
$app_access_token . “&method=post”;
$result = file_get_contents($apprequest_url);
echo(“Request id number: ”, $result);
?>