Hello folks, recently I used wiremock to test api ...
# help
a
Hello folks, recently I used wiremock to test api by creating a stubs. I used docker image to deploy and accessing the wiremock stubs through it. I have a need where I want to put okta authentication layer to wiremock. Is it possible to integrate wiremock with okta ?
t
Hi @Amey Gulhane, it depends exactly what you’re trying to do, but there are a couple of approaches available: 1. Create an
Authenticator
implementation that integrates with Okta’s OIDC interface, create and deploy a custom build of WireMock that uses this. 2. Deploy an authenticating reverse proxy over the top of WireMock.
🙌 1