How to use the call function from passport-oauth

Find comprehensive JavaScript passport-oauth.call code examples handpicked from public code repositorys.

54
55
56
57
58
59
60
61
62
63
options.requestTokenURL = options.requestTokenURL || 'https://openapi.etsy.com/v2/oauth/request_token'; //url used to obtain unauthorized req token
options.accessTokenURL = options.accessTokenURL || 'https://openapi.etsy.com/v2/oauth/access_token'; //url used to exchange user-authorized req token for access token
options.userAuthorizationURL = options.userAuthorizationURL || 'https://www.etsy.com/oauth/signin'; //url used to sign user in
options.sessionKey = options.sessionkey || 'oauth:etsy';

OAuthStrategy.call(this, options, verify);
this.name = 'etsy';
this._profileFields = options.profileFields || null;

// Etsy accepts an extended scope parameter when obtaining a request
fork icon0
star icon13
watch icon2

+ 8 other calls in file