coreos / go-oidc

A Go OpenID Connect client.
Apache License 2.0
1.92k stars 393 forks source link

well-known URLs not accessible from `Provider` #424

Open tfahrenreich opened 5 months ago

tfahrenreich commented 5 months ago

It would be helpful to be able to call ProviderConfig() on Provider to return a reusable config, or make the fields not private

I'm working on a project that requires caching the OpenID discovery request.

From Provider I'm trying to extract the fields needed to create a ProviderConfig which I can then cache and recall using ProviderConfig.NewProvider

Is there a reason to keep fields on Provider private? Some are available through UserInfoEndpoint and Endpoint. These aren't sensitive URLs since they're publicly available through discovery.

Please let me know if there's another method for retrieving these fields that I might be missing. Thanks!

ericchiang commented 5 months ago

Would you mind showing an example of what you're trying to do? Are you trying to serialize the state of a Provider instance?

amir4895 commented 2 weeks ago

@ericchiang I think he want to reuse and not fetching each time, having the same scenario , azure legging in response once in a while and I prefer to cache but deosnt seems that the functionality exists