如何与Facebook setUrlHandler工作? [英] How to work with facebook setUrlHandler?

查看:252
本文介绍了如何与Facebook setUrlHandler工作?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

即时通讯使用的应用程序(http://apps.facebook.com/greetingz),这是一个使用,我可以发送一个请求,并接收器接收通知,但是当接收器点击通知AJAX部分IM的去直接画布页面apps.facebook.com/greetingz,其实我想表现出不同的页面..请在此帮助!

Im using an App("http://apps.facebook.com/greetingz") and this is the ajax part im using, I can send a request and also receiver receiving a notification but when receiver click on the notification its goes to directly canvas page "apps.facebook.com/greetingz" , actually i wanna show a different page.. please help on this !!

    <?php 
         $app_id = "127736900693315";

         $canvas_page = "http://apps.facebook.com/greetingz";

         $message = $_POST['varx'];


         $requests_url = "https://www.facebook.com/dialog/apprequests?app_id=" 
                . $app_id . "&redirect_uri=" . urlencode($canvas_page)
                . "&message=" . $message;

         if (empty($_REQUEST["request_ids"])) {
            echo("<script> top.location.href='" . $requests_url . "'</script>");


         } else {
           // echo "Request Ids: ";
            //print_r($_REQUEST["request_ids"]);
            echo $message;
         }
?>

我如何使用低于code到该应用程序

how can i use below code to this App

 function onUrl(data) {
 if (data.path.indexOf("games.achieves") != -1) {
     console.log('I will process some achievement now.');
 } else if (data.path.indexOf("request_ids") != -1) {
     console.log('I will process some request now.');
 } else {
     // default behaviour
     window.location = data.path;
 }

}

FB.Canvas.setUrlHandler(onUrl);

FB.Canvas.setUrlHandler(onUrl);

推荐答案

您必须与FB API初始化后的一些延迟设置处理函数。

You have to set the handler function with some delay after initialization of the FB api.

FB.init(params);
setTimeout(function() { FB.Canvas.setUrlHandler(onUrl) }, 5000);

使用这种方式,我得到了这个功能的工作。

Using this way I got this feature working.

这篇关于如何与Facebook setUrlHandler工作?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆