これがそれほど難しいことではないことはわかっています。多分私はこれについて間違った方法で行っています。うまくいけば、あなたは私を助けることができます.
誰かの Facebook タイムラインに文字列を投稿できるようにする必要がある Web サイトがあります。
適切にログインしてもらいましたが、許可を得た後にタイムラインに情報を送信するためのコードは見つかりませんでした。
私はここの例に従いましたが、うまくいきませんでした。私は
- アプリを作成しました
- Facebookにログインしました
- レシピ オブジェクトでクック アクションを定義
- 彼らが提供したコードを使用して私のウェブサイトにページを作成し、
[your_app_id]
私のアプリIDに置き換えました - 料理のアクションを投稿しようとしました
しかし、私のサイトのサンプル ページでクック ボタンをクリックすると、次のエラーが表示されます。
No callback passed to the ApiClient for https://graph.facebook.com/me/fblaevents:cook
ブラウザのerror occurred
アラートがポップアップします。
私が使用しているサンプルコードは次のとおりです。
<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# fblaevents:
http://ogp.me/ns/apps/fblaevents#">
<title>OG Tutorial App</title>
<meta property="fb:app_id" content="542182755801091" />
<meta property="og:type" content="fblaevents:recipe" />
<meta property="og:title" content="Stuffed Cookies" />
<meta property="og:image" content="http://fbwerks.com:8000/zhen/cookie.jpg" />
<meta property="og:description" content="The Turducken of Cookies" />
<meta property="og:url" content="http://fbwerks.com:8000/zhen/cookie.html">
<script type="text/javascript">
function postCook()
{
FB.api(
'/me/fblaevents:cook',
'post',
{ recipe: 'http://fbwerks.com:8000/zhen/cookie.html' },
function(response) {
if (!response || response.error) {
alert('Error occured');
} else {
alert('Cook was successful! Action ID: ' + response.id);
}
});
}
</script>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '542182755801091', // 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://fbwerks.com:8000/zhen/cookie.jpg"
width="550"/>
</p>
<br>
<form>
<input type="button" value="Cook" onclick="postCook()" />
</form>
</body>
</html>
もっと簡単な方法があれば、私に指摘してください。何をしているのかわかりません。