728x90
반응형
json placeholder
사용할 수 있는 데이터소스들
JSONPlaceholder comes with a set of 6 common resources:
/posts | 100 posts |
/comments | 500 comments |
/albums | 100 albums |
/photos | 5000 photos |
/todos | 200 todos |
/users | 10 users |
posts
[
{
"userId": 1,
"id": 1,
"title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
"body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"
},
....
]
접근 주소(Routes)들
All HTTP methods are supported. You can use http or https for your requests.
GET | /posts |
GET | /posts/1 |
GET | /posts/1/comments |
GET | /comments?postId=1 |
POST | /posts |
PUT | /posts/1 |
PATCH | /posts/1 |
DELETE | /posts/1 |
사용 가이드도 자세히 나와있다.
공식 홈페이지 : jsonplaceholder.typicode.com/
Mockend
공식 홈페이지 : mockend.com/
728x90
반응형
'Computer Science > Project를 위한 잡다한 것' 카테고리의 다른 글
intelij - this file dose not belong to the project (0) | 2021.04.29 |
---|---|
android studio 깃허브 연동 (0) | 2021.04.27 |
구글 드라이브를 이미지 서버로 사용하기 (0) | 2021.04.21 |
무료 이미지, 아이콘, 음악, 폰트 (0) | 2021.04.16 |
적용 가능한 오픈 API 종류 (0) | 2021.04.09 |