You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
4.1.0版本中:
nextToken字段为较长byteBuffer中的一小段,如果需要持久化这一token,可以通过如下方式提取出有效段并转换成base64 var nextToken = data.nextToken.toString("base64", data.nextToken.offset, data.nextToken.limit);
回传时,再重新new成buffer var token = new Buffer(nextToken, "base64");
The text was updated successfully, but these errors were encountered:
4.1.0版本中:
nextToken字段为较长byteBuffer中的一小段,如果需要持久化这一token,可以通过如下方式提取出有效段并转换成base64
var nextToken = data.nextToken.toString("base64", data.nextToken.offset, data.nextToken.limit);
回传时,再重新new成buffer
var token = new Buffer(nextToken, "base64");
The text was updated successfully, but these errors were encountered: