Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/code-raisan/gouseragent
Goでユーザーエージェント文字列を提供します
https://github.com/code-raisan/gouseragent
golang golang-library useragent
Last synced: about 2 months ago
JSON representation
Goでユーザーエージェント文字列を提供します
- Host: GitHub
- URL: https://github.com/code-raisan/gouseragent
- Owner: code-raisan
- Created: 2022-07-26T06:43:39.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-26T17:00:13.000Z (over 2 years ago)
- Last Synced: 2024-06-21T17:10:43.000Z (7 months ago)
- Topics: golang, golang-library, useragent
- Language: Go
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gouseragent
Goでユーザーエージェント文字列を提供します。
## Install
```
go get github.com/code-raisan/gouseragent@latest
```## Use
```golang
package mainimport "github.com/code-raisan/gouseragent"
func main() {
println(gouseragent.MozillaFirefoxWindows)
// → Mozilla/5.0 (Windows NT ....
}
```### 現在の対応UA
- Mozilla Firefox Windows (`gouseragent.MozillaFirefoxWindows`)
- Mozilla Firefox Linux (`gouseragent.MozillaFirefoxLinux`)
- Mozilla Firefox Mac (`gouseragent.MozillaFirefoxMac`)
- Mozilla Firefox Android (`gouseragent.MozillaFirefoxAndroid`)
- Google Chrome Windows (`gouseragent.GoogleChromeWindows`)
- Google Chrome Mac (`gouseragent.GoogleChromeMac`)
- Google Chrome Android (`gouseragent.GoogleChromeAndroid`)
- Google Chrome iOS (`gouseragent.GoogleChromeIos`)
- Apple Safari Mac (`gouseragent.AppleSafariMac`)
- Apple Safari iOS (`gouseragent.AppleSafariIos`)
- Google Bot (`gouseragent.GoogleBot`)
- Microsoft Bing Bot (`gouseragent.MicrosoftBingBot`)
- Twitter Bot (`gouseragent.TwitterBot`)
- Facebook External Hit (`gouseragent.FacebookBot`)
- Discord Bot (`gouseragent.DiscordBot`)
- Slack Link Expanding (`gouseragent.SlackBot`)