我正在使用 FB 提要对话框来分享用户日记中的内容。现在我想获得这篇文章的点赞、分享和评论数。为了达到这个范围,我正在使用 FQL 查询:
select like_info, share_info, comment_info from stream where post_id='xxxxxxxxx'
获得这个结果:
{
"data": [
{
"like_info": {
"can_like": true,
"like_count": 2,
"user_likes": true
},
"share_info": {
"can_share": false,
"share_count": 0
},
"comment_info": {
"can_comment": true,
"comment_count": 1,
"comment_order": "chronological"
}
}
]
}
我只想知道为什么“can_share”选项设置为false,以及我如何(或是否)可以将其更改为true!
谢谢。