如何动态获取JavaScript API的Access Token

时间:2012-06-14 08:59:08

标签: facebook-graph-api

我正在尝试为Facebook Grahp发布一个动作,以获得我的App批准。 错误:

发布动作 您必须使用此操作类型向时间轴发布至少一个操作。

所以我创建了一个简单的页面来发布动作(我得到了代码形式:Graph API),就是这个:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="de-DE" xmlns:fb="https://www.facebook.com/2008/fbml"> 

<head prefix="og: http://ogp.me/ns# fashion_econtest: http://ogp.me/ns/apps/fashion_econtest#">

    <title>Fashion</title>
    <meta property="fb:app_id" content="MyAppId" /> 
    <meta property="og:type" content="fashion:contest" /> 
    <meta property="og:title" content="eContest" /> 
    <meta property="og:image" content="The Image" /> 
    <meta property="og:description" content="Registrati e vinci cli accessori più fashion dell&#039;anno!" /> 
    <meta property="og:url" content="MyURL">

    <script type="text/javascript">
        function postSubscribe(){
            FB.api(
            '/me/fashion:subscribe',
            'post',
            {share:'MyUrl'},
            function(response){
                if(!response){
                    alert('Error');
                }else if(response.error) {
                    alert(response.error.message);
                }else{
                    alert('Subscribe was successful! Action ID: ' + response.id);
                }
            });
        }
    </script>
</head>
<body>
    <div id="fb-root"></div>
    <script>
        window.fbAsyncInit = function(){
            FB.init({
                appId      : 'MyAppId', // App ID
                status     : true, // check login status
                cookie     : true, // enable cookies to allow the server to access the session
                xfbml      : true  // parse XFBML
            });
        };

        // Load the SDK Asynchronously
        (function(d){
            var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
            js = d.createElement('script'); js.id = id; js.async = true;
            js.src = "//connect.facebook.net/it_IT/all.js";
            d.getElementsByTagName('head')[0].appendChild(js);
        }(document));
    </script>

    <h3>Fashion</h3>
    <p>
        <img title="Vinci i premi più Fashion!" src="http://xxxxxx.de/img/yyyyyy.jpg" width="550"/>
    </p>

    <br>
    <form>
        <input type="button" value="Subscribe" onclick="postSubscribe();" />
    </form>
</body>

但是一旦我发送请求,我就会得到follwonig错误:

  

必须使用活动访问令牌来查询有关当前用户的信息。

如何动态获取Java Script FB-API的访问令牌并使其正常工作?

非常感谢您的帮助!! 阿明

2 个答案:

答案 0 :(得分:1)

Facebook会根据您的应用ID自动交换access_tokens。我认为您正在寻找使用FB API方法获取当前活动的access_token。 尝试FB.getLoginStatus API调用。有关详情,请参阅...... http://developers.facebook.com/docs/reference/javascript/FB.getLoginStatus/

答案 1 :(得分:0)

首先调用FB.login,并要求相应的权限(publish_actions)。

(或者只是使用Graph API资源管理器完成所有事情,而不是为您只需要一次的内容编写脚本。)