本文介绍了Facebook电子邮件总是通过FQL和RestFB返回null的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试将朋友页面转换为粉丝页面(大多数企业都错误地创建了朋友页面),并尝试向所有人发送有关移动的朋友列表。

I'm trying to convert friend pages into fan pages (most businesses have created friend pages by mistake) and am trying to email everyone on a friend list about the move.

我试过


  1. FQLSELECT email FROM user WHERE uid = xxxx

  2. 创建组(不适合5000个朋友页面)

  3. Restfb:Connection myFriends = facebookClient.fetchConnection(me / friends,User.class)等;

FQL和RestFB方法都是返回nada,组电子邮件的方法只是简单的混乱。

The FQL and RestFB methods are both returning nada, group email method is just plain messy.

是这是一个安全功能,还是可以通过我的目的返回这个数据?

Is this a security feature or can this data ever by returned for my purpose?

干杯

推荐答案

访问用户的私人信息,如电子邮件,帖子等,您应该有权访问这些详细信息。有关详细信息,请访问

to access user's private informations like email,posts etc you should have the permission to access those details .for more details visit https://developers.facebook.com/docs/reference/api/permissions/

这篇关于Facebook电子邮件总是通过FQL和RestFB返回null的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 03:05