This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
everyModule.submodule('oauth') | |
// . | |
// . | |
// . | |
.get('callbackPath', | |
'the callback path that the 3rd party OAuth provider redirects to after an OAuth authorization result - e.g., "/auth/twitter/callback"') | |
.step('extractTokenAndVerifier') | |
.description('extracts the request token and verifier from the url query') | |
.accepts('req res next') | |
.promises('requestToken verifier') |
NewerOlder