给定一个 URL,我能否在不将其发布到 Facebook 的情况下判断它是否是 Facebook Instant Article?
问问题
260 次
1 回答
0
是的,您可以向 Graph API 发出请求并请求instant_article
对象的字段。
例如,对 NYT 文章的请求将返回以下结果:
{
"instant_article": {
"id": "1060796090661757"
},
"id": "http://www.nytimes.com/2016/06/11/science/milky-way-light-pollution-dark-skies.html"
}
对此的要求是:
GET https://graph.facebook.com/v2.6/?id=ARTICLE_URL&fields=instant_article&access_token=YOUR_ACCESS_TOKEN
于 2016-06-10T22:17:01.227 回答