koa-passport-example icon indicating copy to clipboard operation
koa-passport-example copied to clipboard

koa-passport usage example

Results 4 koa-passport-example issues
Sort by recently updated
recently updated
newest added

I'm working with koa-mount, looks like the problem is `koa-session` but I'm completely lost with this implementation with `koa-passport`. My code is like : `server.js`: ```js 'use strict'; const koa...

If you got at least one of below things when making google sign in... **1. Failed to retrieve user profile Legacy People API has not been used in project... (in...

Could you make an example of registering a user?

``` js // Require authentication for now app.use(function(ctx, next) { if (ctx.isAuthenticated()) { return next() } else { ctx.redirect('/') } }) ``` is there a way to require authentication per...