Where can I find documentation on the Go SDK for a regular web app?
The quickstart isn’t helpful because I’m not using Gin, nor am I familiar with it.
So I’m having a hard time extracting the core concepts from the example so I can adapt it to my app.
In the SDK documentation at Auth0 Libraries there are no links for Go under regular web apps. Only for backend API services and management API SDK.
I’m using the http router from the standard library and writing my own middleware functions. I will probably use gorilla/sessions for the session data.
So where can I find library-agnostic documentation so I can implement auth in my app?
Thank you for posting your question. I’ve checked through our documentation, and I’m afraid we don’t have a library-agnostic guide or documentation. Below, I will share a few resources regarding authentication with GO; I hope that you will find something useful for your use case.
Thank you Dawid. I went through the Go quickstart and was able to remove the Gin-specific parts and refactor them using normal Go handler funcs, middleware, and context.