Home > Article > Backend Development > How to authenticate identity in golang
In the modern Internet world, security and identity authentication are crucial. The same holds true for developers developing applications using Golang. This article will explain authentication in Golang, which includes Basic Authentication and OAuth 2.0 Authentication.
Basic authentication is one of the simplest and most common authentication methods. In Golang, we can use the built-in net/http
package to implement basic authentication. Here is an example:
package main import ( "fmt" "net/http" ) func BasicAuth(handler http.HandlerFunc, username, password string) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { user, pass, ok := r.BasicAuth() if !ok || user != username || pass != password { w.Header().Set("WWW-Authenticate", `Basic realm="Restricted"`) w.WriteHeader(401) w.Write([]byte("Unauthorized.\n")) return } handler(w, r) } } func handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, "Hello, World!") } func main() { username := "user" password := "pass" http.HandleFunc("/", BasicAuth(handler, username, password)) http.ListenAndServe(":8080", nil) }
In the above example, we defined a BasicAuth
function to verify that the username and password match r.BasicAuth()
The credentials provided match. If no credentials are provided or the credentials provided are incorrect, an HTTP 401 Unauthorized response is triggered. If the credential verification passes, the handler
function is called.
In addition to this basic authentication example, you can also use authentication libraries provided by packages belonging to other third parties, such as Gorilla Toolkit
.
OAuth2.0 is an open standard for the process of allowing third parties to access resources of authorized users. In Golang, we can use the go-oauth2/oauth2
package to implement OAuth 2.0 authentication.
We first need to register our application on the OAuth2.0 provider's website and get the client ID and key. For example, we can create and register a new project in the Google Cloud Console and select "Create Credentials" to obtain our client ID and secret.
We need to set up a client configuration to use OAuth2.0 for authentication. We can achieve this by creating a oauth2.Config
object:
import ( "golang.org/x/oauth2" ) var ( clientID = "YOUR_CLIENT_ID" clientSecret = "YOUR_CLIENT_SECRET" redirectURL = "http://localhost:8080/callback" endpoint = google.Endpoint scopes = []string{"https://www.googleapis.com/auth/userinfo.profile", "https://www.googleapis.com/auth/userinfo.email"} ) var ( oauth2Config = oauth2.Config{ ClientID: clientID, ClientSecret: clientSecret, RedirectURL: redirectURL, Endpoint: endpoint, Scopes: scopes, } )
In the above example, we defined the client ID, client secret, redirect URL, OAuth2 .0 endpoint and scope. The endpoint
here comes from google.Endpoint
, which is a predefined OAuth2.0 provider infrastructure.
Now that we have set up the client configuration, we need to redirect the user to the OAuth2.0 authorization page. We can use the oauth2Config.AuthCodeURL
method to get the authorization URL. Here is an example:
import ( "fmt" "net/http" ) func handleAuthorize(w http.ResponseWriter, r *http.Request) { url := oauth2Config.AuthCodeURL("") http.Redirect(w, r, url, http.StatusFound) }
In the above example, we use the oauth2Config.AuthCodeURL("")
method to get the authorization URL, and then use http.Redirect
to The user is redirected to the authorization page.
Once the user agrees to authorize our application, the OAuth2.0 provider will redirect the user to the redirect URL we provided. In the redirect URL we will include an authorization code that we need to use to obtain the access token.
We need to define a callback handler to handle callback requests from the OAuth2.0 provider. Here is an example:
func handleOAuth2Callback(w http.ResponseWriter, r *http.Request) { code := r.FormValue("code") token, err := oauth2Config.Exchange(oauth2.NoContext, code) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } client := oauth2Config.Client(oauth2.NoContext, token) resp, err := client.Get("https://www.googleapis.com/oauth2/v1/userinfo?alt=json") if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } defer resp.Body.Close() data, err := ioutil.ReadAll(resp.Body) if err != nil { http.Error(w, err.Error(), http.StatusInternalServerError) return } fmt.Fprintf(w, "Data: %s", data) }
In the above example, we first extract the authorization code from the callback and then use the oauth2Config.Exchange
method to get the access token. We can use the oauth2Config.Client
method to create an authenticated HTTP client and use this client to call the Google OAuth2.0 API.
Finally we can respond to the request by writing the response data in the data
variable.
In this article, we introduced two ways to implement authentication in Golang: Basic Authentication and OAuth 2.0 Authentication. By using these methods, we can ensure that our application is secure and only allows access to trusted users.
The above is the detailed content of How to authenticate identity in golang. For more information, please follow other related articles on the PHP Chinese website!