I would like to create a login with a satellite for Twitter. But I can't guess how this is possible using OAuth2.0.
Here is my function:
$authProvider.twitter({ authorizationEndpoint: 'https://api.twitter.com/oauth/authorize', redirectUri: window.location.origin || window.location.protocol + '//' + window.location.host, scope: [], scopeDelimiter: ' ', type: '2.0', clientId: '[myClientID]' });
How am I wrong?
source share