新浪微博如何申请API

第一步:进入新浪微博开放平台

https://open.weibo.com/

第二步:登录个人新浪账号并接入移动开发平台

新浪微博如何申请API_第1张图片

第三步:创建新应用

新浪微博如何申请API_第2张图片

第四步:点击基本信息并保存APP Key和App Secret之后会用到

新浪微博如何申请API_第3张图片

第五步:点击高级信息,填回调页。直到这里前期准备工作就OK啦~

新浪微博如何申请API_第4张图片

第六步:点击文档,并点击微博API,滑到图二视图

在这里插入图片描述
新浪微博如何申请API_第5张图片

第七步:请求授权

新浪微博如何申请API_第6张图片

  • 拼接url,比如:https://api.weibo.com/oauth2/authorize?client_id=你之前复制的AppKey&redirect_uri=之前写的回调地址
  • 然后在浏览器新标签页,输入该url。会跳出新页面,点击授权。
  • 最后我们在回调页得到一个code=772108e2cc6ee1694626e178890b1a03
  • 保存该code。

第八步:获取授权

新浪微博如何申请API_第7张图片

  • 和请求授权相似,我们按照要求拼接url。
  • 比如:https://api.weibo.com/oauth2/access_token?client_id=你的AppKey&client_secret=你的AppScrect&grant_type=authorization_code&code=之前保存的code&redirect_uri=你的回调页。
  • 注意这里的HTTP请求方式为post,所以我们在自己的服务器请求。
var request=require("request")
var url="https://api.weibo.com/oauth2/access_token?client_id=你的AppKey&client_secret=你的AppScrect&grant_type=authorization_code&code=之前保存的code&redirect_uri=你的回调页"
request.post(url,function (error, response, body) {
  if (!error && response.statusCode == 200) {
    console.log(body) 
 }
 })

最后得到access_token

第九步:用这个通行证去请求这个用户的数据

https://api.weibo.com/2/statuses/home_timeline.json?access_token=你的access_token

你可能感兴趣的:(API)