authorizationParams doesn't work to give scope access on login for twitter only

Hi @koppeks,

Thanks for reaching out to the Auth0 Community!

Yes, it is possible to request for more permissions in the context of the scopes for Twitter.

For this scenario, you will need to include both the connection and connection_scope query parameters in your login request.

For example:

  return await handleLogin(req, res, {
    authorizationParams: {
      scope: 'openid profile email offline_access',
      connection: 'twitter',
      connection_scope: 'tweet.write tweet.read users.read'
    }

Let me know if you continue have issues with this.

Thanks,
Rueben