尝试发布自定义操作时,“对象属于类型网站”错误

时间:2012-07-03 23:10:22

标签: facebook-graph-api post types web custom-action

当我尝试发布自定义操作时,我收到错误(下面)声称代表我的对象的网址是网站类型。正如你从我的对象html中看到的,我已经包含了一个。 og:输入'{app_namespace}:{object_name}'标签,实际上这段代码主要由开发者应用生成。我已经成功地为其他应用程序发布了自定义操作,这次我无法弄清楚有什么不同。任何建议将不胜感激。

Facebook错误:

{"error":{"message":"(#3502) Object at URL {URL} has og:type of 'website'. The property 'issue' requires an object of og:type '{app_namespace}:{object_name}'. ","type":"OAuthException","code":3502}}

对象Html:

<html>
  <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# {app_namespace}: http://ogp.me/ns/fb/{app_namespace}#">
    <meta property="og:type"   content="{app_namespace}:{object_name}" /> 
    <meta property="fb:app_id" content="{app_id}" /> 
    <meta property="og:url"    content={URL for this Html} /> 
    <meta property="og:title"  content="Sample title" /> 
    <meta property="og:image"  content="https://s-static.ak.fbcdn.net/images/devsite/attachment_blank.png" />
  </head>
<body>
</body>
</html>

代码我用来发布动作:

<head>
    <script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
    <script type="text/javascript">
        function clickHandler() {
            FB.getLoginStatus(function (response) {
                if (response.authResponse) {
                    FB.api('/me/{app_namespace}:{action_name}?{object_name}={object_url}', 'post', function (response) {
                        alert(JSON.stringify(response));
                    });
                } else {
                    //If user not logged in initiate login process
                    FB.login(function (response) {

                        if (response.authResponse) {
                            FB.api('/me/{app_namespace}:{action_name}?{object_name}={object_url}', 'post', function (response) {
                                alert(JSON.stringify(response));
                            });
                            //actionPublish();
                        } else {
                            //user cancelled login or did not grant authorization
                        }
                    }, {
                        scope: 'publish_actions'
                    });
                }

            });
        }

        $(document).ready(function () {
            window.fbAsyncInit = function () {
                FB.init({
                    appId: '{app_id}',
                    status: true,
                    cookie: true,
                    xfbml: true,
                    oauth: true
                });

                // run once with current status and whenever the status changes
                FB.getLoginStatus(updateButton);
                FB.Event.subscribe('auth.statusChange', updateButton);
            };

            (function () {
                var e = document.createElement('script');
                e.async = true;
                e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
                $("#fb-root").append(e);
            }());
        });
    </script>
</head>

<body>
    <div id="fb-root"></div>
    <button id="publishButton" onclick=clickHandler(); return false " >Publish</button>
</body>

编辑:

如果我将fb对象URL粘贴到调试工具中,则会出现以下错误:

“在网址'http://www.thepropagator.com/takeAction/draft_1/demos3/issue_4.php'获取对象时出错,或者通过重定向或'og指定的其中一个URL :url'属性,包括http://www.thepropagator/takeAction/draft_1/demos3/issue_4.php之一。“

如果我尝试一起阻止URL标记,则错误消失,在我尝试发布动作的任何一种情况下,Facebook都会发回错误,说明该对象属于网站类型。

2 个答案:

答案 0 :(得分:0)

查看对this thread的前两个回复。

This thread也可以为您提供帮助。

this one

其他建议:

  1. fb:app_id标记必须与您尝试使用的应用匹配。
  2. 您确定og:url实际上与对象网址匹配吗?也许你有一个 og:事件页面上的url标记,它将facebook重定向到某个地方 否则没有事件的og标签。
  3. 您是否为其他应用中的对象使用了相同的网址?这也可能导致问题。 如果您的网站需要登录也可能是一个问题。

答案 1 :(得分:0)

我最终创建了一个新的Facebook应用程序。该应用程序有同样的问题,但稍微调整一下(使用调试器和我的代码我开始工作。我不知道这里带走了什么,但我相信问题可能有多达三个根,我的错误,Facebook缓存和我的缓存。

感谢每一位回应者。