kong-oidc is not showing in the plugin list
vincentmarkcelino opened this issue · 1 comments
vincentmarkcelino commented
I installed kong-oidc and restarted the server and also the machine. However, it doesnt showing up the kong-oidc plugins.
i followed carefully the README of kong-oidc but it doesnt showing up in the list.
I also add the kong-oidc to the kong.conf file under plugins.
Does anyone here encountered same problem?
ismoil-nosr commented
You should enable it via Admin API
curl --location 'http://kong-api-domain:8001/plugins/' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data '{
"name": "oidc",
"config": {
"client_id": "OIDC_CLIENT_NAME",
"client_secret": "OIDC_CLIENT_SECRET"
}
}'