티스토리 오픈API 발급 및 인증코드 발급# Life/IT2022. 10. 14. 10:11
Table of Contents
728x90
반응형
API 승인 코드발급
발급경로
인증요청URI
https://www.tistory.com/oauth/authorize?
client_id=abcdefghijklmnopqrstuvwxyz
&redirect_uri=http://client.redirect.uri
&response_type=code
&state=someValue
인증이 완료되면 아래와 같이 리다이렉트 됨
http://client.redirect.uri?code=authorizationCode&state=someValue
토큰발급
GET https://www.tistory.com/oauth/access_token?
client_id={client-id}
&client_secret={client-secret}
&redirect_uri={redirect-uri}
&code={code}
&grant_type=authorization_code
위 내용에는 서버에서 작업해야한다고 되어 있지만 브라우저 개발자모드에서 수행할수 있음.
F12를 눌러서 개발자모드 활성화한다음에 네트워크 탭으로 이동
주소창에 GET을 제외한 나머지 정보를 입력하게되면 아래 같이 토큰정보를 확인할수 있음.
끝
참고
Authorization Code 방식 · GitBook (tistory.github.io)
728x90
반응형
'# Life > IT' 카테고리의 다른 글
[그래픽카드]RTX3070 조텍 트윈엣지 OC non LHR 벤치 (0) | 2022.11.04 |
---|---|
튜닝램 커세어 벤젠스 RGB Pro SL (0) | 2022.10.17 |
[CPU]INTEL i7-2600 성능 (0) | 2022.10.08 |
[메인보드]asus p8h67 후기 (0) | 2022.10.08 |
크롬(엣지) 확장 프로그램(extension) 오프라인 설치 (0) | 2022.10.06 |
@다크쉐라빔 :: 다크쉐라빔의 주절주절
안녕하세요. 이곳은 IT위주의 잡다한 정보를 올려두는 개인 블로그입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!