I am creating anonymous sessions in my Firebase application to save user data before they create their accounts. I saw that Firebase allows linking a Facebook login to an anonymous account which sounds really neat, but a caveat of this process seems to be that I have to grab the Facebook token myself, outside the warmth and comfort of the awesome Firebase API, which seems strange given how much of the login flow Firebase seems to do on behalf of apps. A code sample of how to connect an anonymous account from their account linking docs: Naturally, I want to use Firebase's way of getting a token But if I were to run that, I would lose my anonymous session (and my anonymous user ID, which we want the new Facebook login to use). Is there anyway to get a Facebook Token out of Firebase's auth mechanism without logging the user in and losing the anonymous session that I'm trying to convert into a Facebook Login-able account? (The goal is to not have to call the Facebook API myself, especially as I'll be adding Google here as well) Thanks, Kyle |