douzhongju8780 2011-06-13 13:29
浏览 43
已采纳

如何在Facebook上使用SDK的“manage_pages”权限?

I create an application which appears as a tab on fan page. The administrator of the fan page give me the permission manage_pages and then the tab of my application is added to his fan page.

The problem is that I didn't find any example code on how to use this permission with the PHP SDK. I looked in the file base_facebook.php of the SDK, and I guess that I should using the function getApiUrl, but I'm not sure and probably I don't know how using this function.

  • 写回答

2条回答 默认 最新

  • doufuhao0566 2011-07-18 23:21
    关注

    Now that you have the manage_pages permission, take the access token, pass it into a method like the one I've created below to get an access token to manage the page. Each page has its own access token that you need to use once you have the manage_pages permission.

    function get_page_access_token($page_id, $access_token, $user_id) {
        $data = file_get_contents('https://graph.beta.facebook.com/'.$user_id.'/accounts?access_token='.$access_token);
        $pages = json_decode($data,true);
        foreach($pages['data'] as $page) {
          if($page['id'] == $page_id) {
            return $page['access_token']; 
          }   
       }
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 孟德尔随机化结果不一致
  • ¥15 apm2.8飞控罗盘bad health,加速度计校准失败
  • ¥15 求解O-S方程的特征值问题给出边界层布拉休斯平行流的中性曲线
  • ¥15 谁有desed数据集呀
  • ¥20 手写数字识别运行c仿真时,程序报错错误代码sim211-100
  • ¥15 关于#hadoop#的问题
  • ¥15 (标签-Python|关键词-socket)
  • ¥15 keil里为什么main.c定义的函数在it.c调用不了
  • ¥50 切换TabTip键盘的输入法
  • ¥15 可否在不同线程中调用封装数据库操作的类