我遇到了facebook open graph(烹饪动作和食谱对象)的问题。这是我的网址 http://www.webcoachbd.com/tester.html 当我点击“Cook”时,它会显示一条警告“Error occurred [object Object]”。我已经看过相关的主题并试过了,但问题没有解决。 这是我的tester.html
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# rejoanxxxx: http://ogp.me/ns/fb/rejoanxxxx#">
<meta property="fb:app_id" content="12xxx" />
<meta property="og:type" content="rejoanxxxx:recipe" />
<meta property="og:url" content="http://www.webcoachbd.com/tester.html" />
<meta property="og:title" content="Sample Recipe" />
<meta property="og:image" content="http://www.webcoachbd.com/images/animl136.jpg" />
<script type="text/javascript">
function postCook()
{
FB.api( '/me/rejoanxxxx:cook?recipe:http://www.webcoachbd.com/tester.html',
'post',
function(response) {
if (!response) {
alert('Error occurred : No Response');
} else if (response.error) {
alert('Error occurred : ' + response.error);
} else {
alert('Cook was successful! Action ID: ' + response.id);
}
});
}
</script>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '[123xxxxxxxx]', // 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/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
<h3>Stuffed Cookies</h3>
<p>
<img title="Stuffed Cookies"
src="http://www.webcoachbd.com/images/animl136.jpg"
width="550"/>
</p>
<br>
<form>
<input type="button" value="Cook" onclick="postCook()" />
</form>
和应用程序基本设置是 应用领域:webcoachbd.com 网站网址:http://webcoachbd.com
我用facebook调试器检查我的网址(http://www.webcoachbd.com/tester.html),不显示任何错误或警告。 这个问题有什么解决办法吗?请帮忙。
答案 0 :(得分:1)
发布时使用了冒号(:)而不是等号(=)。
更改此内容: / me / rejoanxxxx:cook?recipe : http ...
对此: / me / rejoanxxxx:cook?recipe = http ...
答案 1 :(得分:0)
当我点击“烹饪”时,它会显示警告“发生错误[对象对象]”。
警报方法无法显示对象结构,因此您只需在该调试尝试中获取[object Object]
。
改为使用console.log(response.error)
,然后查看浏览器的JavaScript控制台,了解实际错误是什么。