我尝试将kong api
经理与 oauth2 一起使用。根据文档,我在kong
进行了api注册,并在该服务中添加了 oauth2 插件,但我的回复中未提及provision_key
。请帮忙解决这个问题
http://10.20.0.151:8001/apis/myservice/plugins
**Request** : name=oauth2
**Response**:
{
"api_id": "df79169c-dcdb-4b3f-98ea-a19d79f5b5f3",
"id": "657b319c-cfb8-44c5-86c9-e2847c6d98db",
"created_at": 1473007130000,
"enabled": true,
"name": "oauth2",
"config": {
"hide_credentials": false,
"mandatory_scope": false,
"enable_password_grant": false,
"token_expiration": 7200,
"accept_http_if_already_terminated": false,
"enable_implicit_grant": false,
"enable_client_credentials": false,
"enable_authorization_code": true
}
}
答案 0 :(得分:0)
您可以在OAuth2插件配置中提供自己的provision_key
$ curl -X POST http://127.0.0.1:8001/apis/{API}/plugins/ -d "name=oauth2" \
-d "config.scopes=email, phone, address" \
-d "config.mandatory_scope=true" \
-d "config.enable_authorization_code=true" \
-d "config.provision_key=987654321ACB"