0

我正在开发一个使用 Facebook 登录的公共网站。用户登录 facebook 后,我想将带有缩略图的网站 URL 发布到他的 facebook 新闻源“已阅读:URL”

我是 facebook 集成的新手。我怎样才能从我的 asp.net 应用程序中实现这一点?现在,我添加了两个 iframe LIKE 和最近的活动。我可以看到我喜欢的帖子。但是我怎样才能发布我阅读的 URL 呢?谢谢。

注意:出于测试目的,我在 iframe 中使用了 www.yahoo.com。

下面的源代码取自

http://www.abelski.com/courses/facebookplugins/abelski_facebook_plugins_page.html

<iframe src="http://www.facebook.com/plugins/activity.php?site=sg.news.yahoo.com&width=300&height=300&header=true&colorscheme=light&font=arial&recommendations=true" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:300px; height:300px;" allowTransparency="true"></iframe>

<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fsg.news.yahoo.com&layout=standard&show_faces=true&width=450&action=like&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:450px; height:80px;" allowTransparency="true"></iframe>
4

1 回答 1

1

您正在寻找一个 Open Graph 动作,特别是文章对象的news.read动作。您将需要设置一个集成了它的应用程序。

您的每个页面都需要具有符合定义为的文章对象的元标记

<html>
    <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# 
                  article: http://ogp.me/ns/article#">
     <meta property="fb:app_id"               content="YOUR_APP_ID"> 
     <meta property="og:type"                 content="article"> 
     <meta property="og:url"                  content="URL of this object">
     <meta property="og:site_name"            content="Name of site hosting article">
     <meta property="og:image"                content="URL to an image">
     <meta property="og:title"                content="Name of article">
     <meta property="og:description"          content="Description of object"> 
     <meta property="article:published_time"  content="DateTime"> 
     <meta property="article:modified_time"   content="DateTime"> 
     <meta property="article:expiration_time" content="DateTime">
     <meta property="article:author"          content="URL to Author object">
     <meta property="article:section"         content="Section of article">
     <meta property="article:tag"             content="Keyword">
    </head>
<body>
    <!-- main article body -->
</body>
</html>

您在 JavaScript 中的操作需要设置为

function postRead()
  {
      FB.api(
        '/me/news.reads',
        'post',
        { article: 'http://yoursite.com/articlepage.html' },
        function(response) {
           if (!response || response.error) {
              alert('Error occured');
           } else {
              alert('Read was successful! Action ID: ' + response.id);
           }
        });
  }

Open Graph 教程中阅读更多信息

于 2012-06-11T03:23:11.350 回答