영감을 (inspire) 주고픈 개발 블로그

Json placeholder - Rest api 연습용 사이트 본문

카테고리 없음

Json placeholder - Rest api 연습용 사이트

inspire12 2019. 4. 10. 01:39

개발의 중요한 일 중 하나가 데이터를 주고 받는 일이다. 

 

다른 기기 사이의 데이터 전송에서 많이 쓰이는 방식이 REST 라고 부르는 통신방식이다. 

 

하지만 네트워크가 끼게 되면 초보 개발자들은 디버깅하는데 애를 먹게 된다. 

 

서버와의 통신은 데이터에 대한 정의가 선행되야하는데 에러가 나니 당황하게 된다. 

 

그런 경우를 대비한 hello world 를 쳐볼 수 있는 사이트이다. 

https://jsonplaceholder.typicode.com/

 

JSONPlaceholder - Fake online REST API for developers

Intro JSONPlaceholder is a free online REST API that you can use whenever you need some fake data. It's great for tutorials, testing new libraries, sharing code examples, ... Example Run this code in a console or from any site: fetch('https://jsonplacehold

jsonplaceholder.typicode.com

https://jsonplaceholder.typicode.com/todos/1

불러오는 중입니다...

위와 같은 url이 있으며 response 도 같이 제공된다. 

위 사이트를 쓰면 서버쪽의 오류가 없다는 건 확인할 수 있으니

내가 어떤 실수를 했는지 찾기 쉬워진다. 

반응형