dou9022 2017-08-08 06:51
浏览 51
已采纳

使用API​​将帖子上传到Facebook粉丝页面

I wrote a code to upload videos to my Facebook fanpage, but it gets uploaded to the community of my fanpage.

May someone help me, what is the problem with my code?

My code:

$appId = 'xxxxxxxxxxx';
$appSecret ='xxxxxxxxxx';

$my_url = ':my website url';
$perms_str = "publish_actions";

$videoPath = 'xxxxxxxxxx';
$title = 'xxxxxxxxxx';
$descriptions = 'xxxxxxxxxxx';

if (!isset($_GET['code'])) {
    $auth_url = "http://www.facebook.com/dialog/oauth?client_id="
        . $appId . "&redirect_uri=" . urlencode($my_url)
        . "&scope=" . $perms_str;
    echo("<script>top.location.href='" . $auth_url . "'</script>");
} else {
    $token_url = "https://graph.facebook.com/oauth/access_token?client_id="
        . $appId . "&redirect_uri=" . $my_url
        . "&client_secret=" . $appSecret
        . "&code=" . $_GET['code'];

    $response = file_get_contents($token_url);
    $access_token = Json::decode($response)['access_token'];

    $fb = new Facebook([
       'app_id' => $appId,
       'app_secret' => $appSecret,
       'default_graph_version' => 'v2.10',
    ]);

    $pageId = 'xxxxxxxxxxxx';

    $fileToUpload = $videoPath ;
    $whereUpload = '/'.$pageId.'/videos';

    $data = [
        'title' => $_SESSION['fileToUpload']['title'],
        'caption' => $_SESSION['fileToUpload']['descriptions'],
        'source' => $fb->fileToUpload($fileToUpload)
    ];
}

try {
    $response = $fb->post($whereUpload, $data, $access_token);
} catch (Facebook\Exceptions\FacebookResponseException $e) {
    // When Graph returns an error
    echo 'Graph returned an error: ' . $e->getMessage();
    exit;
} catch (Facebook\Exceptions\FacebookSDKException $e) {
    // When validation fails or other local issues
    echo 'Facebook SDK returned an error: ' . $e->getMessage();
    exit;
}
  • 写回答

1条回答 默认 最新

  • douzhi7754 2017-08-08 10:51
    关注

    thank you cBroe , i added this code and this worked

     $token_url = "https://graph.facebook.com/oauth/access_token?client_id="
        . $appId . "&redirect_uri=" . $my_url
        . "&client_secret=" . $appSecret
        . "&code=" . $_GET['code'];
    
     $response = file_get_contents($token_url);
     $access_token = Json::decode($response)['access_token'];
    
     $ch = curl_init();
     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
     curl_setopt($ch, CURLOPT_URL, 
         'https://graph.facebook.com/v2.10/'.$pageId.'/?
          access_token='.$access_token.'&debug=all&fields=access_token&format=json 
          &method=get&pretty=0&suppress_http_code=1');
      $content = curl_exec($ch);
      $pageAccessToken=Json::decode($content)['access_token'];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 DS18B20内部ADC模数转换器
  • ¥15 做个有关计算的小程序
  • ¥15 MPI读取tif文件无法正常给各进程分配路径
  • ¥15 如何用MATLAB实现以下三个公式(有相互嵌套)
  • ¥30 关于#算法#的问题:运用EViews第九版本进行一系列计量经济学的时间数列数据回归分析预测问题 求各位帮我解答一下
  • ¥15 setInterval 页面闪烁,怎么解决
  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动