0

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

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

?>
4

1 回答 1

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 发送 post 请求或检查此

于 2012-05-26T10:29:04.777 回答