Skip to content

M-E-W-B/oauth2-express-server

Repository files navigation

Node OAuth2 Server Implementation

OAuth2

Understand the basic of an oauth2 server

Fill up the database

mongoimport --db oauthtest --collection oauthaccesstokens --drop --file ./mongo-dump/oauthaccesstokens.json
mongoimport --db oauthtest --collection oauthauthorizationcodes --drop --file ./mongo-dump/oauthauthorizationcodes.json
mongoimport --db oauthtest --collection oauthclients --drop --file ./mongo-dump/oauthclients.json
mongoimport --db oauthtest --collection refreshtokens --drop --file ./mongo-dump/refreshtokens.json
mongoimport --db oauthtest --collection users --drop --file ./mongo-dump/users.json