티스토리 자동글쓰기 / Access token 발급
2021. 12. 26. 11:24ㆍ코딩
반응형
#Access Token 발급 :
#아래 방법은 Postman을 통한 방법이다.
# client_id={client-id}
# &client_secret={client-secret}
# &redirect_uri={redirect-uri}
# &code={code}
# &grant_type=authorization_code
# 아래 방법은 Postman 없이, 크롬 브라우저에서 할 수 있는 방법이다
# Authentication code 발급 : https://www.tistory.com/oauth/authorize?client_id=티스토리확인후입력할것&redirect_uri=https://coupangstore.tistory.com/&response_type=code&state={state-param}
# 사이트를 방문하면, 허락하기를 눌러준다.
# 그러면 중간에 숫자가 있는 것이 Authentication code 이다
# 이후, 아래의 순서대로 크롬에 입력해 보자
#1 크롬 브라우져를 연다
#2 F12를 누른다.
#3 Network 을 찾아서 누른다.
#4 아래 주소에 있는 내용을 기입한 후, 복사하여 URL 주소창에 복사하고 엔터친다.
# client_id=티스토리 확인 입력
# &client_secret=티스토리 확인 입력
# &redirect_uri=https://coupangstore.tistory.com/
# &code=앞에서 발급한 Authentication code 를 붙여넣기
# &grant_type=authorization_code
잘 안되시면 메시지 주세요...
반응형
'코딩' 카테고리의 다른 글
VScode / ctrl + / 단축키 안될 때 (0) | 2021.12.27 |
---|---|
티스트로 자동글쓰기 / 예시 화면 (0) | 2021.12.26 |
티스토리 자동글쓰기 / Authentication code 발급 (0) | 2021.12.26 |
[파이썬] [Python] Datetime / 시간 표기 / 시간 설정 (0) | 2021.12.20 |
아마존 AWS Billing 요금 청구서 (프리티어 활동기) (0) | 2021.12.20 |