我如何使用 facebook 的 graph api 将消息发布到列表
用户向我提供了他们的 oauth 凭据后,我想允许他们向一群朋友发布消息。
假设他们创建了一个包含 10 个朋友的列表,并将其命名为“我的足球伙伴”,我现在希望能够允许他们使用图形 API 从我的 Web 应用程序中向他们的“我的足球伙伴”列表发布消息。
我该怎么做?
查看 http://developers.facebook.com/docs/reference/api/post< /a> 似乎可以通过提供“To”参数来实现,但比在 http:// Developers.facebook.com/docs/api#publishing 它表示您必须发布到
/PROFILE_ID/feed - desc: - 写入给定个人资料的 feed/wall - args: - 消息、图片、链接、名称、标题、描述、源
请注意,To 参数在上面的 args 中不可用。
那么如何才能做到这一点呢?
另外:对于使用图形 API 的 Web 应用程序,允许用户向他的 10 个朋友发送消息的推荐方式是什么?
After a user has provided me their oauth credentials, I would like to allow them to post a message to a group of their friends.
Say they have created a list of 10 friends and called it "My soccer buddies", I now want to be able to allow them to POST a message to their list "My soccer buddies" from within my web application using the graph api.
How would I do this ?
Looking at http://developers.facebook.com/docs/reference/api/post it seems to be possible by providing the "To" parameter but than in http://developers.facebook.com/docs/api#publishing it says you must post to
/PROFILE_ID/feed - desc: - write to the given profile's feed/wall - args: - message, picture, link, name, caption, description, source
Note the To param is not available in args above.
So how could this be done?
Also: What is the reccomended way for a web app using the graph api to allow a user to send send a message to 10 of his friends?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前还不可能。然而,新的组功能通过图形 API 提供访问,可以将其作为替代方案。
It is not currently possible. The new groups feature however provides access via the graph api and could be looked into as an alternative.