Facebook的API,图表,FQL,......和电子邮件搜索

问题描述:

我工作的一个项目涉及学校和工作的地方,我想将数据从高考报名相结合(包括电子邮件地址)和Facebook的数据,即使数据的最小量,如朋友数或任何其他公共信息,他们已经把在那里。我是正确的,你不能真正通过编程电子邮件地址搜索的Facebook?随意作出任何建议。
谢谢

I am working on a project related to both school and work where I would like to combine data from a college entrance application (which includes email address) and Facebook data, even a minimum amount of data, such as number of "friends" or any other public info they've put out there. Am I correct that you can't really programmatically search Facebook by email address? Feel free to make any suggestions. Thanks

您可以通过电子邮件地址搜索Facebook上,你就不能的可靠的电子邮件地址进行搜索Facebook的。

You can search Facebook by email address, you just can't reliably search Facebook by email address.

例如,你可以让这个查询与用户的访问令牌:

For instance, you can make this query with a user access token:

https://graph.facebook.com/search?type=user&q=USER@EMAIL.NET&access_token=TOKEN

我已经与我知道谁是在Facebook上,在那里我知道他们的电子邮件地址,几个人试过,但我不是朋友和他们在一起。 (多为我妻子的朋友)。

I've tried this with a few people I know who are on Facebook, where I know their email address, but I am not friends with them. (Mostly my wife's friends).

在我的测试中,只有约20%,这些查询返回的Facebook USER_ID。我不知道,如果他们不具备的电子邮件,我知道链接到其用户帐户,或者如果他们自己的隐私设置,以限制他们的电子邮件地址。

In my testing, only about 20% of these queries return a Facebook user_id. I'm not sure if they don't have the email I know linked to their user account or if they have their privacy set to restrict their email address.

一旦你有了自己的user_id,你可以在

Once you have their user_id, you can access all their public information at

https://graph.facebook.com/USER_ID

您不需要的访问令牌来获取此信息。

You don't need an access token to get this information.