Categorygithub.com/wenlng/go-user-agent
modulepackage
1.0.2
Repository: https://github.com/wenlng/go-user-agent.git
Documentation: pkg.go.dev

# README

go-user-agent

Gets the "OSName" or "BrowserName" for USER_AGENT

License Version Go Report Card GoDoc

  • Installation of proxy go module in China

GoProxy https://github.com/goproxy/goproxy.cn

AliProxy: https://mirrors.aliyun.com/goproxy/

OfficialProxy: https://goproxy.io/

ChinaProxy:https://goproxy.cn

Other:https://gocenter.io

Set Proxy of go module

  • Window
set GO111MODULE=on
set GOPROXY=https://goproxy.io,direct

### The Golang 1.13+ can be executed directly
go env -w GO111MODULE=on
go env -w GOPROXY=https://goproxy.io,direct
  • Linux or Mac
vi vim ~/.bash_profile
export GO111MODULE=on
export GOPROXY=https://goproxy.io,direct
source ~/.bash_profile

安装模块

go get -u github.com/wenlng/go-user-agent

获取系统名称

import useragent "github.com/wenlng/go-user-agent"

func main(){
    userAgent := "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60"
    name := useragent.GetOsName(userAgent)
    fmt.Println(name)   // "Windows 10"
}

获取浏览器名称

import useragent "github.com/wenlng/go-user-agent"

func main(){
    userAgent := "Mozilla/5.0 {Macintosh; Intel Mac OS X 10.6.8; U; en) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36 OPR/26.0.1656.60"
    name := useragent.GetBrowserName(userAgent)
    fmt.Println(name)   // "Chrome/39.0.2171.95"
}

作者IT技术网站: http://witkeycode.com

Reward Support

LICENSE

MIT

# Functions

GetBrowserName 获取浏览器名称.
GetOsName 获取OS名称.