ie
ie copied to clipboard
Is enabling AuthTypeHEART supported yet?
Hi, thank you for making this project available. It's been a huge inspiration and I like the architecture. I'd like to authenticate requests against a OpenID-Connect-Java-Spring-Server instance. However I haven't figured out how the request toolchain works yet. How are authentication headers passed? What config is required?
Any help is greatly appreciated.
Sorry, figured it out. In accordance with the example in mitre/heart, I've changed cmd/ie/main.go:
server.DefaultConfig.Auth = auth.HEART("simple", "client_jwk.json", "http://localhost:8080/openid-connect-server-webapp/", "secret")
Requests of course return 403 now. I think it's more a question of the front end to redirect to the opURL for authentification?