使用Facebook API向用户发送消息

时间:2012-05-26 10:23:43

标签: php facebook facebook-graph-api facebook-opengraph

我正在尝试向用户发送消息,但它无法正常工作。知道为什么吗?

<?php 

  $app_id = '####';
  $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 = '###';

  $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;

?>

1 个答案:

答案 0 :(得分:0)

这不是发送帖子请求的方式

$apprequest_url ="https://graph.facebook.com/" .
    $user_id .
    "/apprequests?message='INSERT_UT8_STRING_MSG'" . 
    "&data='INSERT_STRING_DATA'&"  .   
    $app_access_token . "&method=post";

您应该使用php curl发送帖子请求或check this