我正在使用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!
感谢。