목차

IntelliJ IDEA .HTTP

Profile 지정

로컬 파일 전송

POST http://localhost:8080/group
Content-Type: application/json

< ./post.json

Header 지정

GET http://localhost:8080/dev/hello
Authorization: DEV

결과 재사용 / 저장

POST https://httpbin.org/post
Content-Type: application/json

{
    "token": "my-secret-token"
}

// "auth_token"이라는 변수로 값을 저장.
> {%
    client.global.set("auth_token", response.body.json.token);
%}

저장된 값을 사용하려면,

GET https://httpbin.org/headers
Authorization: Bearer {{auth_token}}

Spring Web MVC Controller 실행