首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >不能执行看似简单的对openweathermap.org的HTTP POST

不能执行看似简单的对openweathermap.org的HTTP POST
EN

Stack Overflow用户
提问于 2018-05-25 05:22:49
回答 1查看 767关注 0票数 2

我在一个Angular服务组件中的函数,用openweathermap.org发布一个创建新气象站的请求:

代码语言:javascript
复制
registerStation(registerWeatherStation: RegisterWeatherStation): Observable<Response> {
let params = JSON.stringify(registerWeatherStation)
console.log("params: ",params)
let header = new Headers({'Content-Type': 'application/json; charset=utf-8'})
let options = new RequestOptions({ headers: header })
let url = this.servUrl + 'stations?appid=' + this.weatherAppId
return this
    .http
    .post(url, params, options)
}

这来自Chrome的开发人员工具网络选项卡,显示了由上述函数触发的活动。我认为这显示了我的印前检查请求、来自openweathermap.org的印前检查响应和我的请求标头:

代码语言:javascript
复制
Preflight Request???  
request url: http://api.openweathermap.org/data/3.0/stations?appid=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx  
Request Method: OPTIONS  
Status Code: 404 Not Found  
Remote Address: 162.243.53.59:80  
Referrer Policy: no-referrer-when-downgrade  

Response Headers  
Access-Control-Allow-Credentials: true  
Access-Control-Allow-Methods: GET, POST, PUT, DELETE  
Access-Control-Allow-Origin: *  
Connection: keep-alive  
Content-Length: 42  
Content-Type: application/json; charset=utf-8  
Date: Thu, 24 May 2018 19:57:00 GMT  
Server: openresty  

Request Headers  
Accept: */*  
Accept-Encoding: gzip, deflate  
Accept-Language: en-US,en;q=0.9  
Access-Control-Request-Headers: content-type  
Access-Control-Request-Method: POST  
Connection: keep-alive  
Host: api.openweathermap.org  
Origin: http://localhost:54270  
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36  

这是Postman的代码片段,我执行的帖子得到了openweathermap.org的有效响应:

代码语言:javascript
复制
POST /data/3.0/stations?appid=xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx HTTP/1.1
Host: api.openweathermap.org
Content-Type: application/json
Cache-Control: no-cache
Postman-Token: 25e03224-a9e7-43af-9757-dc37c41af780

{"external_id":"Paula's_Ranch_1","name":"Paula's Ranch Weather","latitude":xx.155012,"longitude":-xxx.976649,"altitude":100}

我做错了什么?我应该从我的后台执行post吗?

EN

回答 1

Stack Overflow用户

发布于 2018-05-31 07:20:06

将我的POST和GET请求移动到服务器端代码解决了这个问题。我还使用了restsharp.netcore。干净而简单。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50518345

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档