如果你导航到https://techcrunch.com/2018/01/13/google-assistant-had-a-good-ces/,你可以在文章后看到至少三个“Facebook Comments Plugin”评论。
但是如果您使用GET -> v2.11 / ?id=https%3A%2F%2Ftechcrunch.com%2F2018%2F01%2F13%2Fgoogle-assistant-had-a-good-ces&fields=engagement
查询Facebook的图形API,根据图形资源管理器,您会看到comment_plugin_count,0的错误字段,但它应该是您在TechCrunch的Facebook评论插件中看到的(目前3)。
或换句话说:https://graph.facebook.com/v2.11/?fields=engagement&format=json&id=https%3A%2F%2Ftechcrunch.com%2F2018%2F01%2F13%2Fgoogle-assistant-had-a-good-ces&access_token=MY_ACCESS_TOKEN&appsecret_proof=MY_SECRET
返回{ ... "comment_plugin_count": 0 ... }
为什么该查询不返回预期的“comment_plugin_count”?
答案 0 :(得分:0)
" comment_plugin_count"生成与其他参与字段不同。虽然无论URL是否具有终止斜杠,其他字段都是正确的,但只有指定了预期的URL时,comment_plugin_count才会正确。在这种情况下,预期的URL应该有一个终止斜杠。 (由"%2F"。指定)
我本应该使用id=https%3A%2F%2Ftechcrunch.com%2F2018%2F01%2F13%2Fgoogle-assistant-had-a-good-ces%2F
。