吸引 Facebook 应用程序的用户
我有一个连接到 facebook graph 的网络应用程序,因此有一个相应的 facebook 应用程序。我正在寻找一种通过 Facebook feed 与我的应用程序用户进行交流的方法。
到目前为止,我已经要求用户喜欢我的应用程序的 Facebook 应用程序配置文件页面,这样当我在墙上发布新闻时,用户就会得到它。这会导致一些混乱,因为应用程序配置文件页面是 webapp-facebook 关系中的外围组件。
理想情况下,我能够以应用程序的形式在 facebook 上发帖,这样我就能接触到所有注册用户,或者以应用程序 URL (www.myapp.url) 的形式发帖,这样喜欢该 url 的用户就会收到帖子。或者以某种方式链接应用程序配置文件页面和 url/应用程序,以便该 url 的喜欢者或应用程序的用户获得配置文件页面帖子。
请注意,我不想发布到用户墙(只是他们的提要),我更愿意使用 Facebook 界面进行手动发布。
I have a web app that is connected to facebook graph, and thus have a corresponding facebook app. I'm looking for a means of communicating with the users of my app through their facebook feed.
So far I've asked the users to like the facebook application profile page for my app, so that when I post news on that wall, the users get it. This causes some confusion since the application profile page is a bit of a peripheral component in the webapp-facebook relationship.
Ideally I would be able to post on facebook either as the app, so that I reach all the registered users, or as the app url (www.myapp.url) so that users who like that url will get the posts. Alternatively somehow link the application profile page and the url/app, so that likers of the url or users of the app get the profile page posts.
Note that I'm not looking to post to users walls (just their feeds) and I'd prefer to post manually, using facebooks interface for posting.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发布到用户新闻源的唯一方法是使用 Facebook 页面或 Facebook 开放图对象。因此,您要求用户喜欢您的 Facebook 应用程序页面的做法是正确的。如果您还有人们喜欢的网页,则可以通过向该网页添加
fb:app_id
或fb:admins
元标记来将该网页转换为开放图谱对象页面的头部。执行此操作将授予您发布到粉丝新闻源的权限,并且您可以访问类似 Facebook 页面的界面(仅用于管理目的)。您可以使用此提要发布者发布到用户的提要(就像您的图形对象是任何其他 Facebook 页面时所做的那样)。要访问管理页面,您只需确保您的 Facebook 用户 ID 位于
fb:admins
元标记中。一旦完成,访问该对象的“赞”按钮社交小部件,您将获得一个链接,可让您转到该对象的管理页面。我希望这是清楚的。您可能应该仔细阅读开放图协议文档。
The only ways you can publish into a user's news feed is to use a Facebook Page or a Facebook Open Graph Object. So, you did right by asking users to like your Facebook Application Page. If you've also got a webpage that people like, you can turn that webpage into an Open Graph object by adding an
fb:app_id
orfb:admins
meta tag to the head of the page. Doing this grants you access to publish to your fans' news feeds, and you get access to a Facebook page-like interface (for administration purposes only). You can publish to the user's feed using this feed publisher (just like you would do if your Graph object were any other Facebook Page).To get to the admin page you just have to make sure your Facebook User ID is in the
fb:admins
meta tag. Once it is, visit a like button social widget for that object, and you'll get the a link that lets you go to the admin page for the object.I hope that's clear. You should probably give the Open Graph Protocol Documentation a good read.