I'm developing a native mobile app for a custom, web-based social network app. We're building a REST API to communicate with the web server, and we've chosen OAuth2 as the authentication method (the grant_type=password flow).
The web-app allows users to login and signup using external services (ie. Facebook and Twitter). We need to allow the same also on the mobile app. The question is: how can we do that?
The Pinterest mobile app is able to manage the situation (see attached image). What is the flow that's been used here?

Do they behave like a classical OAuth-powered app (the mobile app acting as OAuth client directly with the Facebook API?). If so, then how can the mobile app be authenticated with the Pinterest server? Is it passing the Facebook OAuth access token as credentials?
Graphical representation of the problem (see the ????-labeled arrow):
Website API Mobile app Facebook OAuth
+ + +
| | |
| | /oauth2/token |
| +------------------------------>|
| | |
| | OAuth Access Token |
| |<-----------------------------+|
| | |
| ???? | |
|- - - - - - - - - - - - - -| |
| | |
| | |
| OAuth Access Token | |
|+------------------------->| |
| | |
| | |
| API Usage (w/ token) | |
|+------------------------->| |
|<-------------------------+| |
| | |
|+------------------------->| |
|<-------------------------+| |
| | |
| ... | |
+ + +
Update: This question is quite similar to mine.. If this is the right path to follow, then the second+third step (the transmission of the Facebook token to our custom API, plus the validation of the token itself) couldn't be an additional OAuth2 grant type (ie. facebook_token)?