qqinfo

package module
v0.0.0-...-4a7c44b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 4, 2021 License: MIT Imports: 8 Imported by: 0

README

qqinfo

qq 相关接口封装

install

go get -u github.com/chinacase/qqinfo

获取QQ图像 昵称


func main() {
	qq := "397932843"
	q, err := qqinfo.GetQQInfo(qq)
	if err != nil {
		fmt.Println(err)
		return
	}
	fmt.Println(q.Name)
	fmt.Println(q.Image)
}


qq域名报红检测


func main() {
	r := qqinfo.CheckURL("www.uupf.com")
	fmt.Println(r)
}
  • Status 状态 1:安全性未知 2:危险网站 3:安全网站

Documentation

Index

Constants

View Source
const (
	//StatusUnknown 安全性未知
	StatusUnknown = 1
	//StatusPass 安全网站
	StatusPass = 3
	//StatusNoPass 危险网站
	StatusNoPass = 2
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Result

type Result struct {
	Status int    ///状态 1:安全性未知 2:危险网站 3:安全网站
	Msg    string //提示
}

Result Result 解析

func CheckURL

func CheckURL(urlString string) (result Result)

CheckURL qq域名检测

type ResultInfo

type ResultInfo struct {
	Image string //qq图片
	Name  string //qq 昵称
}

ResultInfo QQ信息结构体

func GetQQInfo

func GetQQInfo(qq string) (ressult ResultInfo, err error)

GetQQInfo 获取QQinfo

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL