|
You are here |
www.integralist.co.uk | ||
| | | | |
dusted.codes
|
|
| | | | | Building a secure note sharing service in Go | |
| | | | |
schadokar.dev
|
|
| | | | | Learn how to implement jwt in your api in golang. | |
| | | | |
aarol.dev
|
|
| | | | | Anyone who has implemented a simple HTTP 1.1 server can tell you that it is a really simple protocol. Basically, it's a text file that has some specific ... | |
| | | | |
lanie.dev
|
|
| | | So you want to parse a form. You have your handler, and you're getting data passed in through the request. 1 2 3 4 5 package example func Login(w http.ResponseWriter, r *http.Request) { // hi (: } The next step is to parse the form on the request. 1 2 3 4 5 6 func Login(w http.ResponseWriter, r *http.Request) { var err error if err := r. | ||