-
-
Notifications
You must be signed in to change notification settings - Fork 762
New issue
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
How to add custom passport strategy #440
Comments
This is a little tricky in the current version (0.7) but we're just about to wrap up feathersjs-ecosystem/authentication#336 which will make it much easier. |
@daffl thanks for the reply. This is a crucial piece for my project so I ended up using express alone since I didn't want to break anything in Feathers.. I've been following up with feathers and looking forward using it in my future project. I read alot of great things on its way. |
You can always come back. Feathers is a drop-in replacement for Express (literally replacing |
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue with a link to this issue for related bugs. |
Hello,
I've been stuck trying to understand how to add custom passport strategy to the authentication. Looking forward to using Feathers for my new app but in order to move from my old express app I need to get this authentication piece working.
In my current Express App I have the following strategy below...
`
var passport = require('passport');
var jwt = require('jsonwebtoken');
var AtlassianCrowdStrategy = require('passport-atlassian-crowd').Strategy;
`
Is there a way or do I have to create a separate route and hooks?
The text was updated successfully, but these errors were encountered: