2.4.API_users - YOOGOMJA/github_garden_mern GitHub Wiki
๊ธฐ๋ณธ ํญ๋ชฉ๋ค์ด ์๋ ์ฐ์ฐ,๋ถ์๋ ์ ๋ณด๊ฐ ํ์ํ ๊ฒฝ์ฐ ์ฌ์ฉ๋ฉ๋๋ค.
๊ด๋ จ ํ์ผ
GET
-
/api/users/
: ๋ชจ๋ ์ฌ์ฉ์๋ฅผ ์กฐํํฉ๋๋ค. -
/api/users/search
: ์ฌ์ฉ์๋ฅผ ๊ฒ์ํฉ๋๋ค.
interface SearchQueryString{
// ์ฌ์ฉ์ ์ด๋ฆ
user_name : string,
}
-
/api/users/:user_name
: ํน์ ์ฌ์ฉ์๋ฅผ ์กฐํํฉ๋๋ค. -
/api/users/:user_name/commits
: ํน์ ์ฌ์ฉ์์ ๋ชจ๋ ์ปค๋ฐ์ ์กฐํํฉ๋๋ค. (๊ณง deprecated ๋ ์์ ์ ๋๋ค. ์ปค๋ฐ ์กฐํ ๊ธฐ๋ฅ์ ์ ๊ฑฐ๋ฉ๋๋ค.) -
/api/users/:user_name/repos
: ํน์ ์ฌ์ฉ์์ ๋ชจ๋ ์ ์ฅ์๋ฅผ ์กฐํํฉ๋๋ค. (๊ณง deprecated ๋ ์์ ์ ๋๋ค. api/repos๋ก ์ด๊ด๋ฉ๋๋ค.) -
/api/users/:user_name/challenges
: ๋ชจ๋ ๋์ ๊ธฐ๊ฐ์ ์กฐํํฉ๋๋ค. (๊ณง deprecated ๋ ์์ ์ ๋๋ค. api/challenges๋ก ์ด๊ด๋ฉ๋๋ค.)
POST
- /api/users/:user_name/fetch
: ํน์ ์ฌ์ฉ์์ ์ ๋ณด๋ฅผ ๊ฐฑ์ ํฉ๋๋ค.