We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
json: cannot unmarshal number into Go struct field .msgid of type int32
完整信息 json: cannot unmarshal number 445263598701395969 into Go struct field .msgid of type int32
json: cannot unmarshal number 445263598701395969 into Go struct field .msgid of type int32
weixin/weixin.go
Lines 763 to 768 in e9f0f20
原因在于int32 不能包含 445263598701395969 ,它也比较解决 int64 的最大值
445263598701395969
https://golang.org/pkg/encoding/json/#Number 可能是最后的解决方案
The text was updated successfully, but these errors were encountered:
No branches or pull requests
完整信息
json: cannot unmarshal number 445263598701395969 into Go struct field .msgid of type int32
weixin/weixin.go
Lines 763 to 768 in e9f0f20
原因在于int32 不能包含
445263598701395969
,它也比较解决 int64 的最大值https://golang.org/pkg/encoding/json/#Number 可能是最后的解决方案
The text was updated successfully, but these errors were encountered: