服务端生成小程序二维码,scene参数传入的值为int,一直没有问题出现,当scene值为:1348875216781352960 ,生成的二维码scene参数值变为1348875216781352704,文档中说明scene值为字符串,但是为什么大多数的int可以,就这个不行呢?(scene的值都是通过时间戳生成的19位数字)
data = {"scene":1348875216781352960 , "page": "pages/tabBar/index/index", 'is_hyaline': True}
url = "https://api.weixin.qq.com/wxa/getwxacodeunlimit?access_token=%s" % token
response = requests.request("POST", url, data=json.dumps(data))
我也遇到这个问题了,官方的人呢?