我在facebook上看到了来自nike run的应用程序
它出现在我的墙上,带有交互式图表
我怎么能这样做?
我在Graph Api和Open Graph之间徘徊,有些人暗示??
答案 0 :(得分:3)
现在出现的大多数帖子似乎都使用Flash并将它们嵌入Post中。可以通过使用自定义Open Graph对象,通过在表示Open Graph Object的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" />
并在用户的Feed端点上发布
POST /USER_ID/feed?
link=http://example.com/embed/
access_token=USER_ACCESS_TOKEN
有关如何执行此操作的详细信息,请选中this。