Browse Source

隐藏秘钥

zhengJ_docnet 4 years ago
parent
commit
e1fb404ee8
1 changed files with 5 additions and 103 deletions
  1. 5 103
      common/utils/https.js

+ 5 - 103
common/utils/https.js

@@ -2,9 +2,10 @@ const weather = 'https://free-api.heweather.net/s6/weather'
 const future = 'http://v.juhe.cn/weather/index'
 const air = 'https://free-api.heweather.net/s6/air/now'
 const locl = 'http://apis.juhe.cn/geo/'
-const QQ_MAP_KEY1 = '630ac2e3d80941b48c80fe3a8ed1a042'
-const QQ_MAP_KEY2 = 'c649beb3621c84ee57c365f45a9a6ed4'
-const QQ_MAP_KEY3 = 'dd35eaa26348f268f1f02b4a8fbe4aaf'
+// 和风天气Api产品秘钥 自行去官网申请
+const QQ_MAP_KEY1 = '********************************'
+const QQ_MAP_KEY2 = '********************************'
+const QQ_MAP_KEY3 = '********************************'
 
 
 //添加finally事件
@@ -133,103 +134,4 @@ export {
 	getLift,
 	getAir,
 	gelocation
-}
-
-
-// export const getWeather = (location) => {
-//   return new Promise((resolve, reject) => {
-//     wx.request({
-//       url: 'https://free-api.heweather.net/s6/weather/now',
-//       data: {
-//         location:location,
-//         key: QQ_MAP_KEY1
-//       },
-//       success: (res) => {
-//         resolve({result: res.data})
-//       },
-//       fail: (e) => {
-//         reject(e)
-//       },
-// 	  complete: (e) => {
-// 	  	
-// 	  }
-//     })
-//   })
-// }
-// 未来七天天气
-// export const getFuture = (location) => {
-//   return new Promise((resolve, reject) => {
-//     wx.request({
-//       url: 'http://v.juhe.cn/weather/index',
-//       data: {
-//         cityname:location,
-//         key: QQ_MAP_KEY2
-//       },
-//       success: (res) => {
-//         console.log(res)
-//         resolve({result: res.data})
-//       },
-//       fail: (e) => {
-//         console.log("haha  chucuo 2 ")
-//         reject(e)
-//       }
-//     })
-//   })
-// }
-// 生活指数
-// export const getLift = (location) => {
-//     return new Promise((resolve, reject) => {
-//         wx.request({
-//             url: 'https://free-api.heweather.net/s6/weather/lifestyle',
-//             data: {
-//                 location:location,
-//                 key: QQ_MAP_KEY1,
-//             },
-//             success: (res) => {
-//                 resolve({result:res.data})
-//             },
-//             fail: (e) => {
-//                 reject(e)
-//             }
-//         })
-//     })
-// }
-// 获取空气质量
-// export const getAir = (location) => {
-//   return new Promise((resolve, reject) => {
-//       wx.request({
-//           url: 'https://free-api.heweather.net/s6/air/now',
-//           data: {
-//               location:location,
-//               key: QQ_MAP_KEY1,
-//           },
-//           success: (res) => {
-//               resolve({result:res.data})
-//           },
-//           fail: (e) => {
-//               reject(e)
-//           }
-//       })
-//   })
-// }
-// 经纬度逆向解析
-// export const gelocation = (obj) => {
-//   return new Promise((resolve, reject) => {
-//       wx.request({
-//           url: 'http://apis.juhe.cn/geo/',
-//           data: {
-//             key: QQ_MAP_KEY3,
-//             lat:obj.lat,
-//             lng:obj.lng,
-//             type:1
-//           },
-//           success: (res) => {
-//               resolve({result:res.data})
-//           },
-//           fail: (e) => {
-//               reject(e)
-//           }
-//       })
-//   })
-// }
-
+}