DEV Community

Discussion on: oauth2_client: implement OAuth2 clients with Flutter

Collapse
 
strangenoob profile image
Prateek Mohanty

Thanks, Enrico for this. I have another doubt. How do I have to pass extra header properties in that getTokenWithAuthCodeFlow()?

Thread Thread
 
okrad profile image
Enrico Triolo

Hi Prateek, you can set the accessTokenRequestHeaders property of the client class.

Something like:

var client = GitHubOAuth2Client(
    redirectUri: 'my.app://oauth2redirect',
    customUriScheme: 'my.app');

client.accessTokenRequestHeaders = {
  'MyHeaderName': 'MyHeaderValue'
};