티스토리 자동글쓰기 / 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 이다
# 이후, 아래의 순서대로 크롬에 입력해 보자

#1 크롬 브라우져를 연다
#2 F12를 누른다.
#3 Network 을 찾아서 누른다.
#4 아래 주소에 있는 내용을 기입한 후, 복사하여 URL 주소창에 복사하고 엔터친다.

# client_id=티스토리 확인 입력
# &client_secret=티스토리 확인 입력
# &code=앞에서 발급한 Authentication code 를 붙여넣기    
# &grant_type=authorization_code

 

 

잘 안되시면 메시지 주세요...

반응형