第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

使用打開的天氣圖 api/ 時收到 401 錯誤

使用打開的天氣圖 api/ 時收到 401 錯誤

茅侃侃 2022-08-27 13:57:37
我正在嘗試制作天氣應用程序,但我收到此錯誤。錯誤enter code hereconst express =require("express");const https=require("https");const bodyParser=require("body-parser");const app=express();app.use(bodyParser.urlencoded({extended: true}));app.get("/",function(req,res){res.sendFile(__dirname+"/index.html");});app.post("/",function(req,res){  const query=req.body.CityName;  const api_key="658767b0ae936b022f59a69f44868419"  const unit="metric";const url="https://api.openweathermap.org/data/2.5/weather?q="+query+"&appid="+"&units="+unit;https.get(url,function(response){  console.log(response.statusCode);  response.on("data",function(data){const weather_data=  JSON.parse(data);console.log(weather_data);const temp=weather_data.main.tempconst icon=weather_data.weather[0].iconconst icon_id=" http://openweathermap.org/img/wn/"+icon+"@2x.png"res.write("Temp="+temp);res.write("<img src="+icon_id+">");res.send();})});})API密鑰是有效的,因為我已嘗試使用它(https://api.openweathermap.org/data/2.5/weather?q=Trivandrum&appid=658767b0ae936b022f59a69f44868419&units=metric)
查看完整描述

2 回答

?
LEATH

TA貢獻1936條經(jīng)驗 獲得超7個贊

歡迎來到堆棧溢出。

您已經(jīng)定義了一個名為 api_key 的常量:

const api_key="658767b0ae936b022f59a69f44868419"

但你從不使用它。

您需要更改查詢以將您的api_key包含在 appid 中:

const url="https://api.openweathermap.org/data/2.5/weather?q="+query+"&appid="+api_key+"&units="+unit;



查看完整回答
反對 回復 2022-08-27
?
qq_笑_17

TA貢獻1818條經(jīng)驗 獲得超7個贊

它會在您的代碼中查找您錯過添加 appid。


而不是


const url="https://api.openweathermap.org/data/2.5/weather?q="+query+"&appid="+"&units="+unit;

添加您的 appid



const myAppId = '1234...';


const url="https://api.openweathermap.org/data/2.5/weather?q="+query+"&appid="+ myAppId +"&units="+unit;


共享

編輯

跟隨


查看完整回答
反對 回復 2022-08-27
  • 2 回答
  • 0 關注
  • 258 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網(wǎng)微信公眾號