Gaponov Igor

Results 1 issues of Gaponov Igor

Copied the example for Facebook ```xml ``` ```dart final client = FacebookOAuth2Client( redirectUri: 'my.app.id://oauth2redirect', customUriScheme: 'my.app.id', ); final response = await client.getTokenWithAuthCodeFlow( clientId: dotenv.env['FACEBOOK_APP_ID']!, scopes: ['email'], ); ``` and got...