使用来自第 3 方 Web 应用程序的 facebook graph api 将事件添加到 facebook 用户个人资料

发布于 2024-11-03 03:58:07 字数 380 浏览 1 评论 0原文

需要使用jquery或javascript将事件信息发送到用户的facebook个人资料。用户登录我的网站并创建一个活动,但这些活动详细信息必须发送到他/她的个人资料,以便他可以向他/她的朋友发送邀请,他们可以回复活动,我的网站基于jquery和javascript,并使用java作为中间件和mysql 5.1作为后端。

当我用谷歌搜索 http://www.triadwebcrafters.com/blog/?p 时,我刚刚得到了这个=140

但是它是关于冷聚变的,

是否有人之前已经做过这件事或者有任何可用的库或教程。

请帮助我

Need to send the event information to the users facebook profile, using jquery or javascript. A user logins into my web site and creates an event, but those event details has to be sent to his/her profile so that he can send invitation to his/her friends and they can RSVP to the events, my web site is based on jquery and javascript and have used java as middle ware and mysql 5.1 at the back end.

I just got with this when I googled http://www.triadwebcrafters.com/blog/?p=140

but its on cold fusion,

Is any one already done this before or any library or tutorials available.

Kindly help me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何时共饮酒 2024-11-10 03:58:07

让您的用户通过 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);    

  }

have your user logged in to facebook via the javascript facebook sdk.

next, post to his profile:

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);    

  }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文