STiBaRC is now fully OAuth 2.0 and OpenID Connect Core 1.0 compliant!
04/03/26, 5:53 AM
To the best of my knowledge, anyway. It passed all the standard tests I put it through.
The discovery metadata documents can be found at:
OAuth 2.0: https://stibarc.com/.well-known/oauth-authorization-server
OIDC: https://stibarc.com/.well-known/openid-configuration
Putting these into any standard OAuth/OIDC library will make it Just Workâ˘, as long as you've registered an app at the developer portal (https://stibarc.com/developer) and give it your client ID (and secret if necessary).
If you don't know the basics of OAuth already, here's a good start! https://oauth.net/getting-started/
You can read the discovery documents to learn what endpoints to use if you don't want to use a library, and that guide should tell you what data to send and parameters to set.
PKCE isn't supported yet, so if your app can't store secrets (like the client_secret), you'll have to use the implicit grant (public client type). But it will be soon (but still optional)!