We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
accessTokenField
I'm trying to use a custom field to pass the Facebook Access Token in the request body like this:
passport.use( 'facebook', new FacebookTokenStrategy( { clientID: config.api.social.facebook.appId, clientSecret: config.api.social.facebook.appSecret, // HOW CAN I SPECIFY THE accessTokenField? }, function ( accessToken: string, refreshToken: string, profile: Profile, done: (error: any, user?: any, info?: any) => void ) { // TODO... } ) );
But in the options I can't see any accessTokenField to tell the strategy where to find the token.
The text was updated successfully, but these errors were encountered:
What do you mean by not visible? It is unclear what the problem you have.
Sorry, something went wrong.
No branches or pull requests
I'm trying to use a custom field to pass the Facebook Access Token in the request body like this:
But in the options I can't see any
accessTokenField
to tell the strategy where to find the token.The text was updated successfully, but these errors were encountered: