rlamasb / Firebase.Xamarin

Light weight wrapper for Firebase Realtime Database REST API.
MIT License
149 stars 39 forks source link

Sign in with Twitter token throws '400: Bad request' #19

Open ilchenkob opened 7 years ago

ilchenkob commented 7 years ago

Hi. I'm using Facebook and Twitter for login into my app. Facebook works fine. But when I'm trying to login with Twitter I always have '400: Bad request'. My code is:

_authData = await _authProvider.SignInWithOAuthAsync(FirebaseAuthType.Twitter, token);

In this code 'token' is string that I got from Fabric Twitter SDK, it looks like: "token=,secret=".

Could you please help me find what's the problem, what am I doing wrong?