Facebook API - When user created Facebook account?

前端 未结 3 1292
渐次进展
渐次进展 2020-12-16 02:18

I have a website which uses Facebook connect for user accounts. I\'m having some problems with spam, though.

I\'d like to restrict Facebook login from any Facebook a

3条回答
  •  情歌与酒
    2020-12-16 02:47

    Facebook API doesn't provide the signup date...

    You can, however find out if the user has verified their email address. Something that many bots/spammers don't really do.

    Using the Graph API...a call such as this will return the "verified" field (either TRUE or FALSE):

    https://graph.facebook.com/me/?access_token=&fields=verified

提交回复
热议问题