Unexpected end of JSON input

fetch('<http://localhost:8080/api/v1/walks/location>', {
                    method: 'POST',
                    headers: {
                        'Content-Type': 'application/json',
                    },
                    body: JSON.stringify( // object 형태로 전달
                        { latitude, longitude, timestamp: new Date() }),
                })
                    .then(response => response.json())

참고자료


[TIL] Back-end와 통신 시 발생하는 에러(Unexpected end of JSON input)