カスタム アクションを公開しようとすると、オブジェクトを表す URL のタイプが Web サイトであると主張するエラー (以下) が表示されます。私のオブジェクト html からわかるように、a. og:type '{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 をデバッグ ツールに貼り付けると、次のエラーが表示されます。
「URL 'http://www.thepropagator.com/takeAction/draft_1/demos3/issue_4.php'、またはリダイレクトまたは 'og:url' で指定された URL の 1 つでオブジェクトを取得中にエラーが発生しました。http://www.thepropagator/takeAction/draft_1/demos3/issue_4.phpのいずれかを含むプロパティ。"
URL タグをまとめてブロックしようとすると、エラーはなくなります。どちらの場合も、アクションを公開しようとすると、Facebook はオブジェクトのタイプが Web サイトであるというエラーを返します。