반응형
SMALL
import requests
access_token = ''
tistoryUrl = "https://www.tistory.com/apis/post/write?"
parameters = {
'access_token': access_token,
'blogName': 'berea',
'title': '포기란 없다!',
'content': "포기란 없다!\nDon't give up!",
'visibility': '1', ## 아래쪽에 방법에 대하여 설명예정!!
'category': '',
'tag': 'english, liveacademy, 영어회화, 영어운동',
'acceptComment': '1'
}
response = requests.post(tistoryUrl, params=parameters)
print(response.text)
반응형
LIST
'Programming > Python' 카테고리의 다른 글
UnsupportedOperation : not readable (0) | 2024.01.10 |
---|---|
[Python] 파이썬 파일 입출력(파일 생성, 읽기, 쓰기, 이어쓰기) (0) | 2024.01.09 |
티스토리 API - 카테고리 목록 가져오기 (0) | 2024.01.09 |
Python Tutorials (0) | 2024.01.08 |
How to Make a YouTube Audio Downloader in Python (0) | 2024.01.08 |