Explore >> Select a destination


You are here

mtyurt.net
| | blog.gopheracademy.com
10.9 parsecs away

Travel
| | Create a Slack bot with golang Introduction In this post we'll look at how to set up a quick Slack bot that receives messages (either direct or from channel) and replies to the user.
| | alexrichey.com
13.6 parsecs away

Travel
| | A pattern for distinguishing and handling client and internal errors in Go that leverages the power of Go's interfaces.
| | www.alexedwards.net
9.5 parsecs away

Travel
| |
| | www.rasikjain.com
96.7 parsecs away

Travel
| Here are three scenarios for implementing authentication workflows. Internet Applications (Public facing) For internet web applications and APIs, Session based (SessionID cookie) and Token Based (JWT) Authentication can be implemented. Session Based: Implemented for a majority of traditional and stateful web applications. Once the user is authenticated, A Session state is created and stored in an external State server or SQL database. The Session state is identified by a unique SessionID....