So I'm creating an native iOS application which uses OAuth 2.0 with the grant_type of password to make requests against our own API. (A question of whether that's the best grant_type to use, even if the secret is compromised they would still need the users username and password so is that an issue?)
However how does this work if I want to allow users to Login with Facebook?
My iOS app will authenticate a user against FB and get an access token to talk to Facebook's API, however they wouldn't be authenticated against our own API to make requests to that?
Is the approach to make the FB OAuth callback URL point to our API Server, which when receiving a FB Access Token would store it and also generate an Access Token for itself and then pass that back to the native iOS app. So any calls to FB's API would go through calls to our API. Or is that wrong.
I'm sure this must have been done hundreds of times!