Facebook api获得实时评论

时间:2019-03-20 17:25:03

标签: facebook live-streaming

facebook提到here以获得实时评论

我喜欢他们说的话

var source = new EventSource("https://streaming-graph.facebook.com/2025853151054872/live_comments?access_token=MY TOKEN HERE&fields=from{name,id},message");
source.onmessage = function(event) {
console.log(event);
  // Do something with event.message for example
};

这将给我401错误,正如他们在页面末尾提到here的意思

  

未经授权

     

确保您的应用具有正确的权限,并且访问令牌有效。

所以我检查了我的访问令牌here

及其结果

 Metadata   {"sso":"chrome_custom_tab","auth_type":"rerequest"}
 Valid  True
 Data Access Expires    1560876206 (in about 3 months)
 Origin Mobile Web Faceweb
 Scopes email, publish_video, manage_pages, pages_show_list, publish_pages, public_profile

我不知道为什么会有错误,每件事都是正确的

我也使用Android库library测试了相同的url 同样,它给我错误

1 个答案:

答案 0 :(得分:1)

我发现解决方案似乎facebook需要更多许可及其

UPDATE table SET column1 = 'value' WHERE column2 LIKE 'some value%' 权限,但他们没有提到