pantsel / konga

More than just another GUI to Kong Admin API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kong-oidc is not showing in the plugin list

vincentmarkcelino opened this issue · comments

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?

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"
    }
}'