jmeter 新增带token的http请求

jmeter 新增带token的http请求_第1张图片

一、新增Http信息头管理器

jmeter 新增带token的http请求_第2张图片

  Authorization   Bearer

jmeter 新增带token的http请求_第3张图片

二、为什么Authorization要以Bearer开头

HTTP authentication 

jmeter 新增带token的http请求_第4张图片

三、JWT的结构

JWT包含了使用.分隔的三部分:

  • Header 头部   token类型和采用的加密算法

  • Payload 负载  负载需要经过Base64编码后作为JWT结构的第二部分

  • Signature 签名  使用header中指定签名算法进行签名

xxxxx.yyyyy.zzzzz

 

你可能感兴趣的:(Jmeter,http,网络协议,网络)