我想通过niftyplayer在facebook上分享歌曲。这是我的开放图代码。
<meta property="og:image" content="IMAGE_LINK" />
<meta property="fb:app_id" content="XXXXXXXXXXXXXXXXX">
<meta property="og:title" content="<?= $songs['title']; ?>">
<meta property="og:description" content="<?= $songs['description'] ?>">
<meta property="og:type" content="video">
<meta property="og:site_name" content="<?= $song['name'] ?> - <?= SITE_NAME ?>">
<meta property="og:video:type" content="application/x-shockwave-flash">
<meta property="og:video" content="http://<?= S3_BUCKET; ?>/niftyplayer/niftyplayer.swf?file=<?= 'http://' . S3_BUCKET . '/music/'. $songs['link'] . '&as=0'; ?>">
<meta property="og:video:width" content="300">
<meta property="og:video:height" content="75">
我使用facebook debuger,一切看起来还不错。但事实并非如此。它甚至没有加载图像或播放器。
提前谢谢。答案 0 :(得分:0)
我发现了问题。这是app_id由于某种原因facebook不喜欢app_id,我必须删除才能让播放器正常工作。 谢谢。