Y M

Results 4 comments of Y M

I did the auth project from the udemy tutorial in ES6: controllers/authentication.js ``` import User from '../models/user'; import jwt from 'jwt-simple'; import {config} from '../config'; // function to create user...

I also do not understand why you try to login through the resource server ``` https.createServer(options, (req, res) => { if (req.url.startsWith('/api/tokeninfo') || req.url.startsWith('/oauth/token')) { authServer.web(req, res); } else if...

I have the same problem. It seems to pass through the function only if you use apollo server-side e.g. with a smart query. My '~/plugins/apollo.loading.js' ``` export default (isLoading, countModifier,...

Hi, So @mati-o what did you do with this? Is there a full example of using oauth2orize-openid? Also with with authorization code flow one is not able to access the...