CSDN博客API

CSDN博客API_第1张图片

请求网址:“https://mp.csdn.net/postedit/saveArticle”

Headers要求数据:

 cookie:用于登录

 content-type:application/x-www-form-urlencoded; charset=UTF-8

Data发送数据:

  1. titl:Test  文章标题

  2. typ:1

  3. cont:

    1 2
    3 4
    5 6

     

     博客内容

  4. categories:C++ 文章分类

  5. chnl:16

  6. level:0

  7. tag2:   标签

  8. artid:0

  9. private:false

  10. 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)

结果:

CSDN博客API_第2张图片

你可能感兴趣的:(Python)