需要使用jquery或javascript将事件信息发送给用户的Facebook个人资料。用户登录我的网站并创建活动,但这些活动详细信息必须发送到他/她的个人资料,以便他可以向他/她的朋友发送邀请,他们可以回复活动,我的网站是基于jquery和javascript并在后端使用java作为中间件和mysql 5.1。
当我用Google搜索http://www.triadwebcrafters.com/blog/?p=140
时,我就是这么做的但它的冷融合,
之前是否有人已经完成此任务或任何库或教程可用。
请帮助我
答案 0 :(得分:2)
让您的用户通过javascript facebook sdk登录到Facebook。
接下来,发布到他的个人资料中:
function publish_it()
{
var publish = {
method: 'stream.publish',
message: 'your message',
attachment: {
name: 'invitation',
description: 'a very pretty invitation!',
href: 'href to the invitation',
media: [
{ type: 'image', src: 'http://site.com/image.jpg', href: 'href to the invitation'}
]
},
action_links: [
{ text: 'come as well!', href: 'href to the invitation' }
]};
FB.ui(publish);
}