Vivokey API Discovery

I’m starting to mess with the VivoKey API and the OpenID plugin that I’m using doesn’t like the fact that https://api.vivokey.com/openid/.well-known/openid-configuration doesn’t report any scopes_supported. Looks like someone just needs to add

 "scopes_supported": [
  "openid",
  "email",
  "profile"
 ],

to the JSON that gets returned.

This would generally be an issue with the OpenID plugin you’re using, as nobody else has had issues. It’s a bit more than “just adding” this to the JSON being returned, as it does require work on the code itself which I didn’t write and can only barely maintain. However, I’ll have a look when I can and see what we can do.

1 Like

Yeah, I filed a bug report with them too. Technically that field is recommended, not required so their implementation is out if spec.

1 Like