parse-community / ParseFacebookUtils-Android

A utility library to authenticate ParseUsers with the Facebook SDK
http://docs.parseplatform.org/android/guide/#facebook-users
Other
53 stars 63 forks source link

logInWithReadPermissionsInBackground sends out an verification email #33

Open jenlai1345 opened 6 years ago

jenlai1345 commented 6 years ago

Hi,

There's 3 ways to register for my app

  1. via mobile phone (my Parse app sends out a code to the number)
  2. via email address ( my Parse app sends out an verification email that user has to click)
  3. via facebook login

When users registers/logs in using FB account, it sends out a redundant verification email to the users because I fetch user's email from facebook and save it in the "email" column.

I believe this bug has been fixed in the Parse server (do not send out verification email when user logs in using OAuth). I'm doing exactly the same thing in my iOS version of app and it has the correct behavior (no verification email); however, using ParseFacebookUtils-Android I keep getting a verification email every time I log in via FB.

Is there a work around?

Much thanks in advance!