duannv2081 2014-01-09 08:18
浏览 44
已采纳

识别Facebook应用程序是否在画布上

How can i identify that, either my Facebook app is running inside Facebook canvas or outside canvas (as we access website like www.example.com).

i tried to get URL staying inside Facebook canvas like,

echo $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];

but it return the same URL like outside of the canvas,
i visited this link, but i didn't find any useful material..

Please help.

  • 写回答

2条回答 默认 最新

  • doujia7779 2014-01-09 10:59
    关注

    Look to see if $_POST['signed_request'] is set. When your app URL is requested inside the canvas or inside a page-tab then Facebook sends the signed request POST parameter to the server. When it is not set, you can be confident the application is running outside of Facebook.

    You can decode $_POST['signed_request'] with the following code, if you need to get some of the data it contains:

    function parse_signed_request($signed_request) {
      list($encoded_sig, $payload) = explode('.', $signed_request, 2); 
    
      $secret = "appsecret"; // Use your app secret here
    
      // decode the data
      $sig = base64_url_decode($encoded_sig);
      $data = json_decode(base64_url_decode($payload), true);
    
      // confirm the signature
      $expected_sig = hash_hmac('sha256', $payload, $secret, $raw = true);
      if ($sig !== $expected_sig) {
        error_log('Bad Signed JSON signature!');
        return null;
      }
    
      return $data;
    }
    
    function base64_url_decode($input) {
      return base64_decode(strtr($input, '-_', '+/'));
    }
    

    If you don't need the data, just check that it is set.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 删除虚拟显示器驱动 删除所有 Xorg 配置文件 删除显示器缓存文件 重启系统 可是依旧无法退出虚拟显示器
  • ¥15 vscode程序一直报同样的错,如何解决?
  • ¥15 关于使用unity中遇到的问题
  • ¥15 开放世界如何写线性关卡的用例(类似原神)
  • ¥15 关于并联谐振电磁感应加热
  • ¥60 请查询全国几个煤炭大省近十年的煤炭铁路及公路的货物周转量
  • ¥15 请帮我看看我这道c语言题到底漏了哪种情况吧!
  • ¥66 如何制作支付宝扫码跳转到发红包界面
  • ¥15 pnpm 下载element-plus
  • ¥15 解决编写PyDracula时遇到的问题