Google authenticator setup as 2 factor authentication in twitter login unfortunately reset without backuping - twitter

I have setup my twitter account 2 factor authenticator as Google Authenticator, Unfortunately I reset my phone without backup codes. When I re-install authenticator app it's like newly installed application
I tried several times with other login options but nothing came success. Help me to login Twitter

Related

Sign in with google prevents the user to sign in again with different account - iOS

I'm using google authentication to sign in with firebase.
The authentication process works well and I'm able to create the credentials and authenticate.
My problem is when, after signing out from firebase and google, the user tries to sign in using google again. At this point google will automatically authenticate with the account used previously.
I tried both sign-out and disconnect option from google api but the result is the same.
I partially found what my problem was, here steps to reproduce:
Not signed in with google in app and not signed-in in safari on the device with a google account
Sign in with the application using a google account
Now I am signed-in in app AND in safari as well with the same account
When I sign-out from the application, safari is still authenticated with this user
I'm not able to see the account choice in app until I sign-out the google account from safari on the device
This problem doesn't show up if safari (point 1) was already signed-in with a different google account. In this case I will always have a choice between the two accounts in app.
Is there a way to sign out from the app and always shows the account choice when signing in with google again?
There are many Authentication URI parameters. One of them is "prompt" which could have a "select_account" value. It helped me to resolve the same issue for Auth0-service Google integration. Maybe could be useful for your issue if the SDK allows setting parameters for sign in.
See docs here: https://developers.google.com/identity/protocols/OpenIDConnect#authenticationuriparameters

Firebase Authentication issue

I am using firebase authentication for my iOS project. I am facing problem of account override by google login case i.e if I logged in with email or facebook login then if I click on google login then from console account getting change in Google plus.
I have disabled the multiple accounts with same email.
I am not getting this issue when I am using google plus login for first time.
This is the expected behavior. Google authentication overrides other forms of authentication like Facebook or email/password if the same email is used. If this is not a behavior you want, go to the Firebase website and leave feedback. In the meantime, here are some options:
Deal with it as is. Users many not even care about it
Turn on multiple accounts so users can sign in with either
Keep a path in your database listing user emails for Facebook authentication, and then use a Cloud Function to scan it before authenticating a user on Google, preventing login if the email is found to belong to a Facebook account.

Issue : Connecting using OAuth to Jawbone from android app

We are using Jawbone API to pull data tracked using jawbone devices.
Our users are successfully able to sign in when they access Jawbone sign in page during OAuth process from our website.
However, they are not able to sign in when they access jawbone authentication page from our android app during OAuth process. This authentication page is launched in webview on andriod.
On log in page after entering correct credentials and clicking on Sign In button does nothing. The page even does not display whether credentials were correct or not.
Is the OAuth authentication user agent (web/app) dependent?
We have started facing this issue just recently and before it used to work perfectly.
Jawbone's OAuth2 flow operates through web login and approval pages, then issues a redirect callback to your server. Jawbone has several partners who do this within their Android apps.
It sounds like your app is not handling the callback half of the OAuth2 flow correctly, but it's hard to say based on this description.
Have you reviewed the Authentication documentation?
Also, consider Jawbone's Android SDK.

How to deal with 2-step authentication for Facebook on Spotify login?

I've integrated the cocoalibspotify framework into my application, and at some point I ask the user to log in to Spotify. The login view controller presents a Facebook login, but does not switch to the Facebook application.
However, I have tested this with a friend's account that has 2-step authentication enabled for Facebook (where Facebook sends him a code to his mobile phone for completely logging in).
Spotify doesn't seem to have a two-step process for logging in for these types of Facebook accounts. Spotify just returns saying "wrong credentials".
Am I missing something, or is two-step Facebook log in not possible through Spotify?
Or is there a different way to log in a user that has 2-step auth enabled on their Facebook account?
Thanks!
I think if you try to login 3 or 4 times, then facebook very helpfully gives you an "account alert" on their website and lets you verify that you were actually trying to login and then it should work.
I'm not sure about the better way to do this. Two factor auth still trips up even many of google's login mechanisms that don't even involve oauth.

Integrate Google account login into a iOS app

I want to login in my iOS App with a Google account. Instead of having a database with users and having to register all the users, I simply login with my existing Google account.
Anyone knows a way of doing this, or a tutorial?
Google Accounts Authentication and Authorization for Mobile Apps has fairly detailed instructions for authenticating Google account users and includes iOS-specific steps.

Resources