Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating saved account #82

Open
mistenkt opened this issue Feb 27, 2017 · 1 comment
Open

Updating saved account #82

mistenkt opened this issue Feb 27, 2017 · 1 comment

Comments

@mistenkt
Copy link
Contributor

mistenkt commented Feb 27, 2017

If my token has expired, and my thirdparty service uses its refresh token to generate a new token, how can i update the managers saved account info?

the flow is like this

manager.authorize('provider')
    .then(res => {
            // this will use the saved account info
            api.auth(res.credentials.accessToken).then(apiRes => {
                // the api tries to use the provided access token to auth against the provider serverside, it sees that the token is expired and uses its refreshtoken to create a new one

                // apiRes returns user data including a new access token
                // when this refreshtoken differs from the one manager the managers saved account info should be updated so that next time it runs it uses the correct access token

                if(res.credentials.accessToken !== apiRes.accessToken) {
                    // Should update managers saved account info
                }
                
            })
        }
@mistenkt
Copy link
Contributor Author

mistenkt commented Mar 1, 2017

I don't see any api for this, and im guessing this would require both iOS and Android specific code to implement. Hopefully someone will take a look at this, as it is causing a lot of issues.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant