You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/service/tianyancha/equity.human_indexnode.go

22 lines
579 B

package tianyancha
import (
"net/http"
)
type EquityHumanIndexNodeResult struct {
IsLogin int `json:"isLogin"`
Message string `json:"message"`
Special string `json:"special"`
State string `json:"state"`
VipMessage string `json:"vipMessage"`
}
func (app *App) EquityHumanIndexNode(notMustParams ...Params) (body []byte, err error) {
// 参数
params := app.NewParamsWith(notMustParams...)
// 请求
body, err = app.request("https://capi.tianyancha.com/cloud-equity-provider/v4/equity/humanIndexnode.json", params, http.MethodGet)
return body, err
}