I've created a custom OAuth provider using oauth-plugin. I'd like to create a provider API that gives access to user data, but I'm not sure how to properly construct the API query.
I've noticed that several Omniauth strategies, including Twitter, Linkedin, and Vimeo, access user data from their respective APIs via access_token.get, but these calls to the API seem to be generic, rather than specific to a particular user.
Does something within the access_token.getcall identify the user to the API? If not, how is the user discerned?