请求网址:“https://mp.csdn.net/postedit/saveArticle”
cookie:用于登录
content-type:application/x-www-form-urlencoded; charset=UTF-8
titl:Test 文章标题
typ:1
cont:
1 | 2 |
3 | 4 |
5 | 6 |
博客内容
categories:C++ 文章分类
chnl:16
level:0
tag2: 标签
artid:0
private:false
stat:publish
import requests
url = 'https://mp.csdn.net/postedit/saveArticle'
header={
'cookie':'别想知道我的=.=',
'content-type':'application/x-www-form-urlencoded; charset=UTF-8'
}
content='''
1
2
3
4
5
6
'''
data={
'titl':'API Test',
'typ':'1',
'cont':content,
'categories':'Test',
'chnl':'16',
'level':'0',
'artid':'0',
'private':'false',
'stat':'publish',
}
res = requests.post(url, headers=header, data=data)
print(res)