Jared Hanson
Jared Hanson
Merged and published as `[email protected]`. Thanks!
As a rule, I don't merge pull requests that lack corresponding tests. I'll merge this if tests are added, otherwise it'll have to wait until I have time to write...
My main concern here is that, while Slack claims to be implementing OAuth 2.0, they don't follow the specification at all (thus, its not really OAuth 2.0). While the hook...
What's the benefit of this option over just authenticating your API calls? Instead of: ``` app.get('/api/profile', ensureLoggedIn({sendHTTPCode:true}), function(req, res){ ... }); ``` do this: ``` app.get('/api/profile', passport.authenticate('bearer'), function(req, res){ ......
What are the server-side APIs using for authentication credentials? The session cookie?
I'm not sure I totally follow what's going on here. Could you provide a description?
Anyone want to implement this and submit a PR?
I'm planning on adding a check for circular dependencies and throwing an error before the stack size is exceeded. I don't know of a good workaround to the circular dependency...
The idea is you can do this the following way: ``` IoC.use(IoC.fs('app'); ``` In app/myliteral.js: ``` exports = module.exports = 'bar'; exports['@literal'] = true; ``` To create the literal: ```...
This is all a bit in flux at the moment, so let me know if you had some other idea.