github api 사용하기

# 사용자의 모든 저장소 정보
curl -s --user "ysoftman:password123" https://api.github.com/user/repos

# 해당 저장소에서 사용되는 언어별 사용 bytes
 curl -s --user "ysoftman:password123" https://api.github.com/repos/ysoftman/test_code/languages

# github api 를 이용해 이슈 정보 파악하기
# https://developer.github.com/v3/issues/
# 이슈번호 : 10
curl -s --user "ysoftman:password123" https://api.github.com/repos/ysoftman/test_code/issues/10

# git release 정보 파악하기
# https://developer.github.com/v3/repos/releases/
curl -s --user "ysoftman:password123" https://api.github.com/repos/ysoftman/test_code/releases

comments:

댓글 쓰기