当试图发布FB动作时,我得到一个id,但没有发布任何内容

时间:2012-08-28 04:51:44

标签: facebook opengraph

这是我的代码

   window.fbAsyncInit = function() {
        FB.init({
          appId      : 'xxxxxxxxxxxxx', // App ID
          status     : true, // check login status
          cookie     : true, // enable cookies to allow the server to access the session
          xfbml      : true  // parse XFBML
        });

        // Additional initialization code here
      };

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

       function postscore(){
        FB.login(function(response){
          if (response.authResponse)
          {
            var uid = response.authResponse.userID;
            FB.api('/'+uid+'/xyznamespace:actionname?access_token='+response.authResponse.accessToken, 'post', { objectname: document.location.href, customproperty: 85, 'fb:explicitly_shared':true }, function(response1) {
              if (!response1 || response1.error) {
                alert(response1.error.message);
              } else {
                alert('Post ID: ' + response1.id);
              }
            });          
          }
        },
        {scope:'publish_actions'});
        return false;
      }

我收到了回复ID,但没有创建帖子。我做错了什么?

另外,我可以像我一样传递属性值吗?或者这会被忽略?

(无论我是否传递属性值,都返回id。)

提前感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

尝试通过get方法和相同的ID获取帖子,并检查帖子是否回来。这可能是您无法看到帖子的原因。