作者:谢海武181_160 | 来源:互联网 | 2024-10-17 18:55
当我从实时供稿或企业页面上保存的视频中获取评论时,我试图检索海报的名称和个人资料照片。与一些谷歌,我发现我需要传递page_access_token到请求。我已经从/me/accounts
刀片中检索了访问令牌并将其添加到我的请求(TypeScript)中:
this.facebook.api(`/${this.facebook_video_id}/comments?fields=id,message,created_time,from&access_token=${this.page_access_token}`)
这不起作用,并且在每个注释对象上都找不到from属性。我的权限请求包括以下选项:
const options: LoginOptiOns= {
scope: 'public_profile,email',return_scopes: true,enable_profile_selector: true
};