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
没有 x-device-id header
{"error":"invalid_argument","error_code":3,"error_url":"","error_description":"Request parameter error","error_details":[{"@type":"type.googleapis.com/google.rpc.DebugInfo","stack_entries":[],"detail":"device_id is empty"}]}
没有 x-captcha-token header
{"error":"captcha_invalid","error_code":9,"error_url":"","error_description":"Verification code is invalid","error_details":[{"@type":"type.googleapis.com/google.rpc.DebugInfo","stack_entries":[],"detail":"captcha_token is empty"}]}
x-captcha-token header 乱填
{"error":"captcha_invalid","error_code":9,"error_url":"","error_description":"验证码无效","error_details":[{"@type":"type.googleapis.com/google.rpc.DebugInfo","stack_entries":[],"detail":"no client info found"}]}
仅更换 x-device-id 但不更换 x-captcha-token
{"error":"captcha_invalid","error_code":9,"error_url":"","error_description":"验证码无效","error_details":[{"@type":"type.googleapis.com/google.rpc.DebugInfo","stack_entries":[],"detail":"device not match"}]}
x-device-id 生成算法似乎使用了随机数. 如下.
_.prototype._uuidv4 = function() {
return "xxxxxxxxxxxx4xxxyxxxxxxxxxxxxxxx".replace(/[xy]/g, function(r) {
var e = Math.random() * 16 | 0
, t = r == "x" ? e : e & 3 | 8;
return t.toString(16)
})
}
The text was updated successfully, but these errors were encountered:
查看压缩文件列表和解压压缩文件 API 接口
查看压缩文件列表
解压所有文件
通过
task_id
使用progress
API 可以获得解压进度另外想请教
client_id
如何获取才能不需要附上x-device-id
和x-captcha-token
的header. 我自己电脑上登录时有生成client_id
和其余两个字段, 但是登录后使用其jwt需要附上两两匹配的x-device-id
和x-captcha-token
, 否则响应400/401错误.x-device-id 生成算法似乎使用了随机数. 如下.
The text was updated successfully, but these errors were encountered: