私のメタ タグは正しい形式で、私のコードは正常に動作しています。問題は、説明とタイトルを変更してからアクションを投稿するときです。私はまだポストに古いタイトルと説明を持っています. 古い説明とタイトルが表示されている理由。FacebookのオープングラフAPIのバグですか?返信してください
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# site: http://ogp.me/ns/fb/site#">
<meta property="fb:app_id" content="7777777777777" />
<meta property="og:type" content="site:deal" />
<meta property="og:url" content="http://www.site.com/deal_success.php" />
<meta property="og:title" content="war" />
<meta property="og:image" content="http://site.com/images/logo.png" />
<meta property="og:description" content="ola ola ola ola"/>
<meta property="og:site_name" content="site.com"/>
function downloadCoupon(url)
{
FB.api(
'/me/winery-site:object',
'post',
{ deal: 'http://www.site.com/page.php' },
function(response) {
//alert(response);
if (!response || response.error) {
console.log(response.error);
alert('Earror occured'); return;
document.location=url;
} else {
alert('Cook was successful! Action ID: ' + response.id);
return;
document.location=url;
}
});
}