0

我正在尝试为 Facebook Grahp 发布一个操作,以获得我的应用程序批准。错误:

发布动作 您必须使用此动作类型将至少一个动作发布到您的时间线。

所以我创建了一个简单的页面来发布操作(我得到了代码表单: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>

但是一旦我发送请求,我就会收到以下错误:

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

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

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

4

2 回答 2

1

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

于 2012-10-08T14:28:39.937 回答
0

首先调用 FB.login,并请求适当的权限 (publish_actions)。

(或者只是使用 Graph API 资源管理器完成所有工作,而不是为只需要一次的东西编写脚本。)

于 2012-06-14T11:57:52.383 回答