OAuth2 之Nodejs实战

2016-11-29 Frank NodeJS

分别克隆运行oauth2orize-examplesexample-oauth2orize-consumer这两个例子。

oauth2orize-examples
安装

git clone https://github.com/gerges-beshay/oauth2orize-examples.git
pushd oauth2orize-examples
npm install

使用

node app.js

example-oauth2orize-consumer
安装

npm install -g jade

git clone https://github.com/coolaj86/example-oauth2orize-consumer.git
pushd example-oauth2orize-consumer/
npm install
# 注意这里在windows下会报找不到文件或目录的错误,只能一个一个文件的生成html了。
jade public/*.jade

使用

node ./server 3001

之后就可以欢乐的跑起来了。

后续可以将user和client信息放到数据库中管理起来了。

发表评论 登录

Top