0

我想获取“允许”我的 facebook 连接应用程序的 facebook 用户列表。(我要求提供电子邮件,publish_stream)

4

1 回答 1

0

这是一个 facebook 开发者网站链接。 https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Fpermissions 如果用户允许您的应用程序,那么它将返回具有以下设置的结果

                [installed] => 1
                [status_update] => 1
                [photo_upload] => 1
                [video_upload] => 1
                [email] => 1
                [create_note] => 1
                [share_item] => 1
                [publish_stream] => 1
                [publish_actions] => 1
                [user_birthday] => 1
                [user_photos] => 1
                [user_status] => 1

如果用户跳过允许在 facebook 上发帖的步骤,那么结果将是

                [installed] => 1
                [email] => 1
                [user_birthday] => 1
                [user_photos] => 1
                [user_status] => 1

您可以使用 [publish_stream] => 1 和 [publish_actions] => 1 来检查用户是否允许应用。

于 2012-11-21T10:47:09.690 回答