- 怎么获取access_token?
https://developers.weixin.qq.com/miniprogram/dev/platform-capabilities/business-capabilities/ministore/minishopopencomponent/API/coupon/create_coupon.html https://api.weixin.qq.com/product/coupon/create?access_token=xxxxxxxxx access_token来自那个接口请求返回的可否详细说明?微信小店可否提供上述api创建优惠劵?
09-25 - store-home 无效
https://developers.weixin.qq.com/miniprogram/dev/component/store-home.html 我想问你们这里说的要求是什么要求?什么样符合?为什么没有反应?什么问题造成的?可以详细描述吗?编写文档可以负责任点吗?[图片]
09-24 - canvas type是webgl情况下canvasGetImageData回调报错什么意思?
<canvas type="webgl" id="webgl" canvas-id='webgls' style="width: 370px; height: 370px;margin: auto;" @touchstart="touchStart" @touchmove="touchMove" @touchend="touchEnd" /> touchMove(e) { const { x, y } = e.changedTouches[0] wx.canvasGetImageData({ canvasId: 'webgls', x, y, width: 1, height: 1, success: (res) => { uni.showToast({ title: 'success' }) var pixel = res.data; var r = pixel[0]; var g = pixel[1]; var b = pixel[2]; var a = pixel[3] / 255; var rHex = r.toString(16); r < 16 && (rHex = "0" + rHex); var gHex = g.toString(16); g < 16 && (gHex = "0" + gHex); var bHex = b.toString(16); b < 16 && (bHex = "0" + bHex); var hexColor = "#" + rHex + gHex + bHex; console.info(hexColor) }, fail: (error) => { console.info(error) }, complete: () => { this.platform.dispatchTouchEvent(e); } }, this) }
07-24