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

后端 未结 11 1750
陌清茗
陌清茗 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:10


    WARNING: Old and outdated answer. Do not use


    I think that you will have to go for your last solution, scraping the result page of the search, because you can only search by email with the API into those users that have authorized your APP (and you will need one because the token that FB provides in the examples has an expiry date and you need extended permissions to access the user's email).

    The only approach that I have not tried, but I think it's limited in the same way, is FQL. Something like

    SELECT * FROM user WHERE email 'your@email.com'
    

提交回复
热议问题