0

你能发现我的错误吗?

我真的很难让开放图形操作获得批准。我希望人们分享(操作)照片(对象)并请求用户消息和明确共享的功能。我从 Facebook 收到的最新评论是:

由于您的应用程序中出现错误,我们无法测试此操作。请通过使用 Auth Dialog Preview User 进行测试,确保您的操作正常运行并重新提交。

不是很有帮助!

我已经使用 Auth Dialog Preview User 测试了我的操作,并且效果很好。我还使用返回响应代码 200 的对象调试器测试了我的页面 - 这显然意味着一切都很好(正确吗?)。

下面是我在测试页面上使用的代码,希望有人能够指出我的错误在哪里,因为我看不到它:

<head>
meta tags here

<script type="text/javascript">
  function Share()
  {
      FB.api(
        '/me/NAMESPACE:share&photo=TEST PAGE URL&message=Cool photos&fb:explicitly_shared=true&access_token=ACCESS TOKEN','POST',  function(response) {
            if (!response || response.error) {
                alert('Error occured');
              } else {
                alert('Post was successful! Action ID: ' + response.id);
              }
        });
    }
  </script>


<script type="text/javascript">
window.fbAsyncInit = function() {
FB.Canvas.setAutoGrow();
}
// Do things that will sometimes call sizeChangeCallback()
function sizeChangeCallback() {
FB.Canvas.setSize({ width: 810, height: 1180 });
}
</script>
</head>
<body>
<div id="fb-root"></div>
    <script>
      // 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));

      // Init the SDK upon load
      window.fbAsyncInit = function() {
        FB.init({
          appId      : 'APP ID', // App ID
          channelUrl : '//CHANNEL FILE URL', // Path to your Channel File
          status     : true, // check login status
          cookie     : true, // enable cookies to allow the server to access the session
          xfbml      : true,  // parse XFBML
          oauth      :true
        });

        // listen for and handle auth.statusChange events
        FB.Event.subscribe('auth.statusChange', function(response) {
          if (response.authResponse) {
            // user has auth'd your app and is logged into Facebook
            FB.api('/me', function(me){
              if (me.name) {
                document.getElementById('auth-displayname').innerHTML = me.name;
              }
            })
            document.getElementById('auth-loggedout').style.display = 'none';
            document.getElementById('auth-loggedin').style.display = 'block';
          } else {
            // user has not auth'd your app, or is not logged into Facebook
            document.getElementById('auth-loggedout').style.display = 'block';
            document.getElementById('auth-loggedin').style.display = 'none';
          }
        });

        // respond to clicks on the login and logout links
        document.getElementById('auth-loginlink').addEventListener('click', function(){
          FB.login();
        });
        document.getElementById('auth-logoutlink').addEventListener('click', function(){
          FB.logout();
        }); 
      } 

      function loginUser() {    
     FB.login(function(response) { }, {scope:'publish_actions, email'});     
     }
    </script>

 <div id="auth-status">
        <div id="auth-loggedout">
          <a href="#" id="auth-loginlink"><img src="login_btn.png"></a>
        </div>
        <div id="auth-loggedin" style="display:none">

      </div>
    </div>

<form>
    <input class="shr-btn" type="button" value="" onClick="Share()" />
  </form>

</body>

任何帮助将不胜感激。

非常感谢

D


啊啊啊啊 我现在收到了来自 Facebook 的回复:

您的代码当前配置为发布流故事。您必须更改代码,以便当测试用户触发操作时,它会生成一个开放的图表故事。请进行适当的更改并重新提交。

有人可以让我知道我做错了什么吗?我认为代码的设置是为了发布一个开放的图表故事——但显然是现在。

如果有人能指出我做错了什么,我将永远感激不尽。

非常感谢。

D

4

2 回答 2

0

这似乎与您在这一行中传递附加参数的方式有关:

'/me/NAMESPACE:share&photo=TEST PAGE URL&message=Cool photos&
fb:explicitly_shared=true&access_token=ACCESS TOKEN','POST',  function(response)

你真的想做更多类似的事情:

FB.api('/me/NAMESPACE:share', 'post', 
{ photo : 'TEST_PAGEURL', message : 'Cool photos' }, function(response));

这里重要的是包含您的自定义 JSON 内容作为函数的第三个参数。似乎 URL 参数方法可能会触发这种消息,因为它是一个较旧的实现。

于 2012-10-31T21:23:55.587 回答
-1

不,这不是因为您正在使用动词“分享”来创建故事。我刚刚获得了 Facebook 批准的故事,我使用了动词“分享”。我的故事早些时候被拒绝了,原因和你的一样。

基本上,当您使用开放式图表故事时,您不能将内容发布到相册或任何其他类型的帖子。例如,以下是不允许的:

                $data = $facebook->api('/me/photos', 'post', $args);//disallowed                
                $facebook->api(
                  'me/invig-test:share',
                  'POST',
                  array(
                        'app_id' => $configParam['appId'],
                        'type' => "test:photo",
                        'photo' => "http://samples.ogp.me/574859819237737",                   
                        'title' => "a photo",
                        'image[0][url]'=>"http://www.testapp.com/".$imgFile,
                        'image[0][user_generated]'=>'true',
                        'message' => $comments,                   
                        'fb:explicitly_shared'=>true,
                    )
                  );

而是只做“分享”:

                $facebook->api(
                  'me/invig-test:share',
                  'POST',
                  array(
                        'app_id' => $configParam['appId'],
                        'type' => "test:photo",
                        'photo' => "http://samples.ogp.me/574859819237737",                   
                        'title' => "a photo",
                        'image[0][url]'=>"http://www.testapp.com/".$imgFile,
                        'image[0][user_generated]'=>'true',
                        'message' => $comments,                   
                        'fb:explicitly_shared'=>true,
                    )
                  );
于 2013-09-27T17:27:46.263 回答