I’m looking at using the openid product for generating and verifying oauth2 tokens. Is this product suitable for this purpose? The documentation is kind of lacking on its uses, parameters for each call etc… I see how to generate tokens, but I don’t see a call to verify the token inve it’s generated that the consuming app can use.
OpenID for ASP.NET Core supports the OpenID Connect (OIDC) specification. OpenID Connect is built on top of OAuth 2.0 but the product doesn’t directly support OAuth 2.0. This is something we may add in a future release depending on customer demand.
I suggest taking a look at Microsoft’s JwtSecurityTokenHandler
class to see if it meets your requirements.
Thanks I’ll take a look at it.