0

我对 facebook API 比较陌生,但想知道如何允许用户通过 API 或社交插件将页面添加到“兴趣列表”?例如:

<html>
    <head>
      <title>My Great Web page</title>
    </head>
    <body>
       <iframe src="https://www.facebook.com/plugins/like.php?href=YOUR_URL"
        scrolling="no" frameborder="0"
        style="border:none; width:450px; height:80px"></iframe>
    </body>
 </html>

是如何喜欢,我知道这是基本的,但我可以允许用户将喜欢的页面添加到他们的兴趣列表中。

4

1 回答 1

1

API

您不能发布到兴趣连接。Graph API 不支持它。

您的应用可以通过 GET 请求检索用户的兴趣

graph.facebook.com/USER_ID/interests

你需要

user_interests
friends_interests

权限。

但是,您不能发布到兴趣连接。如果您尝试,您将得到 GraphMethodException“不支持的发布请求”作为回报。

社交插件

没有一个社交插件将发布到兴趣作为一项功能。

于 2012-05-16T04:57:24.980 回答