1.0.3 • Published 7 years ago

mock-oauth-2-server v1.0.3

Weekly downloads
8
License
MIT
Repository
github
Last release
7 years ago

Mock OAuth2 server for testing

Mock Data

const mockData = {
  client: {
    id : 'oauth2_application_client_id',
    secret : 'oauth2_application_secret',
    redirectUris : ['http://localhost:5000/oauth2/redirect/callback'],
    grants: ['authorization_code']
  },
  user: {
    id : '123',
    uuid : 'dkalfyeoiqajaof',
    email: 'brad@email.com'
  },
  jwtSecret: 'jwt_secret_key'
};

generateAccessToken

const defaultGenerateAccessToken(client, user, scope) {
  return jwt.sign(user, 'im_a_secret', { algorithm: 'HS512', jwtid: uuid() });
},