postman怎么发送加密请求

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman怎么发送加密请求相关的知识,希望对你有一定的参考价值。

参考技术A raw式使用纯字符串数据传式所POST前能需要手工些JSON格式数据转换字符串(加两单引号) Form-data式key-value提交数据其实割

postman发送请求的其中一个值需要MD5加密,如何加密的

参考技术A 将这个值传入这个方法中返回的就是加密后的字符。再将字符放入到postman中,postman本身没有提供加密。
/**利用MD5进行加密
* @param str 待加密的字符串
* @return 加密后的字符串
* @throws NoSuchAlgorithmException 没有这种产生消息摘要的算法
* @throws UnsupportedEncodingException
*/
public String EncoderByMd5(String str) throws NoSuchAlgorithmException, UnsupportedEncodingException
//确定计算方法
MessageDigest md5=MessageDigest.getInstance("MD5");
BASE64Encoder base64en = new BASE64Encoder();
//加密后的字符串
String newstr=base64en.encode(md5.digest(str.getBytes("utf-8")));
return newstr;
参考技术B 路过,但我不知道怎么回答你的问题

以上是关于postman怎么发送加密请求的主要内容,如果未能解决你的问题,请参考以下文章

使用postman发送ase加密请求

postman 发送MD5加密签名请求

Postman 如何调试加密接口?

postman的https双向认证请求配置

postman怎么发送post请求

postman怎么发送json参数