Postman使用小技巧 2024-4-18 23:01 | 130 | 0 | Postman,计算机 64 字 | 1 分钟内 如何支持csrf: 登录账号之后,会有集合功能,在集合里面请求的Tests里加上这段代码,读取cookie放入http请求头中. const csrf_token = pm.cookies.get('XSRF-TOKEN') pm.collectionVariables.set('csrf_token', csrf_token) 然后再添加请求头 … csrf