ホーム サイトでホストされ、IFrame を介して 3 つの個別のサイトに含まれているものを作成しました。投票が完了したら、投票者が Facebook オンラインで結果を共有できるようにしたいと考えています。Facebook 共有では、タイトルと説明を操作するためにメタ タグが必要です。この目的を達成するための最善の方法は何ですか?
1 に答える
0
JSDK の stream.publish メソッドを使用しないのはなぜですか?
FB.ui({
method: 'stream.publish',
message:'your result description',
attachment: {
name: title,
caption: "My Result",
media: [{
type: 'image',
href: 'http://www.example.com/',
src: 'http://www.example/images/working.jpeg'
}]
},
action_links: [{
text: 'Join the Run',
href: 'http://www.example.com/'
}],
user_message_prompt: 'Tell your friends about Get your percentage:'
});
友達とシェアするのもいい方法だと思います。
于 2011-01-10T12:17:05.327 に答える