Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 줄바꿈 문자
- port
- context
- Source
- netsh
- resource
- Mac
- 네트워크
- VirtualBox
- lsof
- 단축키
- Windows 10
- plugin
- vscode
- Quartz
- JavaScript
- tomcat
- web.xml
- ssh
- import
- grep
- find
- IntelliJ
- xargs
- bash
- profile
- Windows
- maVen
- GIT
- Eclipse
Archives
- Today
- Total
목록2025/01/10 (1)
develog
[postman] pre-request 에서 base64 로 인코딩 후 요청하기
Request > Script > Pre-request 에 함수를 등록하고 사용하기 const btoa = require('btoa');// query stringfunction query_string_base64 (paramName) { let oldValue = pm.request.url.query.get(paramName); let newValue = btoa(oldValue); pm.request.url.query.remove(paramName); pm.request.url.query.add({key: paramName, value: newValue});};// path variablefunction path_variable_base64 (...paramNames) { ..
카테고리 없음
2025. 1. 10. 10:20