2

我在 facebook 上看到了 nike run 的应用程序

它以交互式图表出现在我的墙上

我怎么能做一个这样的?

有人建议我在 Graph Api 和 Open Graph 之间纠结??

4

1 回答 1

3

现在出现的这些帖子中的大多数似乎都使用 Flash,并且只是将它们嵌入到帖子中。可以通过使用自定义 Open Graph 对象进行交互,方法是在表示 Open Graph 对象的 URL 上添加以下元标记

 <head prefix="og: http://ogp.me/ns fb: http://ogp.me/ns/fb">
    <meta property="fb:app_id"       content="APP_ID" />
    <meta property="og:type"         content="game" />
    <meta property="og:url"          content="http://example.com/embed/" />
    <meta property="og:title"        content="Beat Gareth's high score" />
    <meta property="og:description"  content="Gareth scored 2800, can you beat it?" />
    <meta property="og:image"        content="http://example.com/game.png" />
    <meta property="og:video"        content="http://example.com/game.swf" />
    <meta property="og:video:width"  content="398" />
    <meta property="og:video:height" content="299" />
    <meta property="og:video:type"   content="application/x-shockwave-flash" />

并在用户的提要端点上发布为

POST /USER_ID/feed?
  link=http://example.com/embed/
  access_token=USER_ACCESS_TOKEN

有关如何执行此操作的更多详细信息,请查看

于 2013-04-25T12:01:28.157 回答