English 中文(简体)
书库许可方言(Java 方言)
原标题:Facebook permission dialog (JavaScript sdk)

我在Facebook上使用OAuth Dialog,允许用户使用电子邮件、出生日和其他细节,但当我使用该传真时,即<代码>https://apps.facebook.com/projectatestapp/。 (虽然被贴在Facebook上) 我看到这一标识是为了评估窗户:

你们正在像Nina Sewart那样进行试验。 计算结果不会在Facebook上添加这一工具。

允许和多端允许使用<<0>

我的法典

<html xmlns:fb="https://www.facebook.com/2008/fbml">
<body>
    <script src="http://connect.facebook.net/en_US/all.js"></script>
    <div id="fb-root"></div>
    <script>
        FB.init({ 
            appId:  [My app id] , 
            xfbml: true, 
            cookie: true,
            oauth: true
        });

        FB.login({
            scope:  email,user_birthday ,
        });
    </script>

    <a href="https://www.facebook.com/dialog/oauth/?scope=email,
        user_birthday&
        client_id=148244388606048&
        redirect_uri=https://apps.facebook.com/projectatestapp/test2.html&
        response_type=token" target="_top">test</a>
</body>
</html>

请告诉我它有什么错误?

最佳回答

你们之所以看不到这一点,是因为申请过程已成为两个步骤的过程。

  1. Being that the person accepts to login into your application.
  2. Being the person accept your extended permission which is where the callback url comes into play.

文件见

因此,要求你退约的原因是,两个步骤进程。 我建议将答复附在第二页之后。

我不敢肯定,科索沃统计局是如何运作的,而是我是如何做到这一点的。

Goodluck。

问题回答

您在呼吁自闭门窗之前,需要给酒吧添加标记,以识别用户。

我认为,这样做是为了达到以下目的:FB.getAccess Token();

我在此有同样的问题。 这些文件只说,只有开发商/制造商才能获得出版许可,但我可以设法使其只使用用来制造 app的补贴。 其他测试用户(尽管是经授权的开发商)无法接过附加到时间的阶段。

这可能是一大 b。

我在几个小时的时间里一直在努力解决这一问题,我的亲爱的同事帮助我现在解决该问题。 确保在标识被点名之后,不要再更新网页。 基本上不做如下的事情:

FB.login(...);
window.location.refresh();

在FB.login的电话中加入复读法!

曼人,我感到非常 st,但有时你们会感到困惑,并忘记,在执行守则命令方面,工作迟缓。





相关问题
Facebook Connect login dialog not working

I am using Facebook Connect for iPhone and following the official instructions. I use the following code to display the login dialog: FBLoginDialog* dialog = [[[FBLoginDialog alloc] initWithSession:...

Facebook App Profile Tab is Empty ... No Content Displayed?

I can view my application via the http://apps.facebook.com/myapplication/ link and the content shows up correctly. I also added the application as a tab to a facebook page. However, when viewing the ...

Facebook Platform error: "Object cannot be liked"

I m working on a Facebook Application that generates wall posts. In testing these posts, I ve discovered that the Facebook Platform action of "liking" a post is failing. The specific error message ...

how to call showPermissionsDialog() in php (facebook api)?

I was reading over the documentation yet I could not figure out how to call Facebook.showPermissionsDialog() in php include_once ./facebook-platform/php/facebook.php ; $facebook = new Facebook(my ...

Facebook connect

If I plug in the facebook connect into my website, How can I prevent double signups? Lets say I have a user that s already signed up to my site but he clicked the connect with facebook, is there a ...

热门标签