From 0d9df910f876422d09fbb3cd57a29899faa392fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BA=B5=E7=BA=AC?= Date: Thu, 16 Sep 2021 01:34:52 +0800 Subject: [PATCH] =?UTF-8?q?wxuin=E7=9A=84int=E7=B1=BB=E5=9E=8B=E5=AF=BC?= =?UTF-8?q?=E8=87=B4=E7=BC=96=E8=AF=91=E7=9A=8432=E4=BD=8D=E7=A8=8B?= =?UTF-8?q?=E5=BA=8F=E5=87=BA=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- items.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/items.go b/items.go index d03dae6..86c1d59 100644 --- a/items.go +++ b/items.go @@ -12,7 +12,7 @@ import ( // LoginInfo 登录信息 type LoginInfo struct { Ret int `xml:"ret"` - WxUin int `xml:"wxuin"` + WxUin int64 `xml:"wxuin"` IsGrayScale int `xml:"isgrayscale"` Message string `xml:"message"` SKey string `xml:"skey"` @@ -53,7 +53,7 @@ func (l LoginInfo) Error() string { // BaseRequest 初始的请求信息 // 几乎所有的请求都要携带该参数 type BaseRequest struct { - Uin int + Uin int64 Sid, Skey, DeviceID string }