如果有URL,我可以判断它是不是Facebook即时文章而不在Facebook上发布吗?
答案 0 :(得分: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