node.js調用極光推送獲取cid

//koa封裝的請求第三方接口的方法(koa2-request)
const koaRequest = require('koa2-request')               
const btoa = require('btoa')
let res = koaRequest({
  //極光推送的api
  url: 'https://api.jpush.cn/v3/push/cid',
  method: 'get',
  headers: {
    'Content-Type': 'application/json',
    // 經過 Authorization 傳遞 base64 編碼後的AppKey和Master Secret
    'Authorization': 'Basic ' + btoa('你的appkey:你的密鑰')
  }
});
//獲取獲得的是字符串,先將字符串轉換爲對象,才能獲取cid
const cid = JSON.parse(res.body).cidlist[0]
相關文章
相關標籤/搜索