Golang : Get and Set User-Agent examples
Problem :
You want to detect User-Agent of your web application users and also setup your own User-Agent name for your Golang application.
How to get and set User-Agent in Golang application?
Solution :
Example 1 :
package main
import (
"fmt"
"net/http"
)
func getUserAgent(w http.ResponseWriter, r *http.Request) {
ua := r.Header.Get("User-Agent")
fmt.Printf("user agent is: %s \n", ua)
w.Write([]byte("user agent is " + ua))
}
func main() {
http.HandleFunc("/", getUserAgent)
http.ListenAndServe(":8080", nil)
}
Example 2:
package main
import (
"fmt"
"net/http"
)
func getUserAgent(w http.ResponseWriter, r *http.Request) {
ua := r.UserAgent() //<---- simpler and faster!
fmt.Printf("user agent is: %s \n", ua)
w.Write([]byte("user agent is " + ua))
}
func main() {
http.HandleFunc("/", getUserAgent)
http.ListenAndServe(":8080", nil)
}
To set User-Agent for your Golang application, first create a client and set client's request header with [your user-agent name] before executing the request.
For instance :
client := &http.Client{}
request, err := http.NewRequest("GET", "http://example.com", nil)
if err != nil {
log.Fatalln(err)
}
request.Header.Set("User-Agent", "[your user-agent name]")
resp, err := client.Do(req)
The web site example.com will detect your program User-Agent as whatever name you choose for [your user-agent name].
Reference :
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.4k Golang : Gorilla web tool kit secure cookie example
+14.2k Golang : Overwrite previous output with count down timer
+10.9k Golang : Fix - does not implement sort.Interface (missing Len method)
+12.3k Golang : Exit, terminating or aborting a program
+9.8k Golang : Identifying Golang HTTP client request
+21.8k Golang : Match strings by wildcard patterns with filepath.Match() function
+12.4k Golang : Drop cookie to visitor's browser and http.SetCookie() example
+8.3k Linux/Unix : fatal: the Postfix mail system is already running
+7.3k Golang : Get YouTube playlist
+12.1k Elastic Search : Return all records (higher than default 10)
+22.7k Golang : Randomly pick an item from a slice/array example
+17.7k Golang : How to log each HTTP request to your web server?