如题 第一步请求正常返回paramsBody 第二不请求具体代码实现如下:
Map<String, String> params = new HashMap<>();
params.put("key", filePath);
params.put("Signature", paramsBody.get("authorization").toString());
params.put("x-cos-security-token", paramsBody.get("token").toString());
params.put("x-cos-meta-fileid", paramsBody.get("cos_file_id").toString());
params.put("file", Base64.getEncoder().encodeToString(FileToByte(fileObj)));
Map<String, String> headers = new HashMap<>();
headers.put("Content-Type", "multipart/form-data");
String jsonStr = HttpKit.post(paramsBody.get("url").toString(), params, headers);
logger.info(jsonStr);
在这里拿到的结果为MethodNotAllowed
请帮忙分析下是什么原因?
postman调通了 再说代码