Find Facebook user (url to profile page) by known email address

后端 未结 11 1720
陌清茗
陌清茗 2020-12-01 03:40

I have an email address and want to find out if there is a Facebook user linked to this address. If there is, then I want to retrieve the url to this users profile page and

11条回答
  •  情深已故
    2020-12-01 04:08

    Simply use the graph API with this url format: https://graph.facebook.com/search?q=zuck@fb.com&type=user&access_token=... You can easily create an application here and grab an access token for it here. I believe you get an estimated 600 requests per 600 seconds, although this isn't documented.

    If you are doing this in bulk, you could use batch requests in batches of 20 email addresses. This may help with rate limits (I am not sure if you get 600 batch requests per 600 seconds or 600 individual requests).

提交回复
热议问题