- wx.request流式字符乱码问题
这里怎么转字符都会乱码 但是用postman请求就没一点儿问题 const requestTask = wx.request({ url: 'https://ark.cn-beijing.volces.com/api/v3/bots/chat/completions', method: 'POST', enableChunked: true, responseType: "arraybuffer", // 以 ArrayBuffer 格式接收数据 data: { "model": '', "messages": [{ "role": "user", "content": "写一个文章" }], "stream": true, }, header: { 'content-type': 'application/json', 'Authorization': 'Bearer xxx' }, success: response => {}, fail: error => {} }); requestTask.onChunkReceived((response) => { const arrayBuffer = response.data; const uint8Array = new Uint8Array(arrayBuffer); const str = new TextDecoder('utf-8').decode(uint8Array); console.log('str:',str) }); [图片]
星期五 17:58 - 怎么查看access_token是被哪些接口使用了?
目前我们小程序的业务只有一个地方用到了access_token去调用小程序码wxacode.getUnlimited,别的地方没用调过access_token,但是通过官方提供的查询api调用次数查询到的 调用access_token次数和调用生成小程序码的次数不匹配,而且发现调用小程序码的次数好像不对,调了之后查userd次数还是没变,所以我想知道我的小程序到底哪个地方使用了access_token或者我这个小程序都使用了哪些API
2021-12-23