我对http请求非常陌生,并尝试使用https://darksky.net/dev/docs/faq获取数据。他们不支持CORS,并建议我必须使用代理服务器来获取他们的数据。
我正在使用Angular并且正在为http请求使用服务:
import { Injectable } from '@angular/core';
import { Headers, Http } from '@angular/http';
import 'rxjs/add/operator/toPromise';
@Injectable()
export class ServiceWeather { // Unconventional but I see all my services when typing service
constructor(private http: Http) { }
private weatherUrl = 'https://api.darksky.net/forecast/[key]/[latitude],[longitude]'
public getWeather(): Promise<any> {
return this.http.get(this.weatherUrl)
.toPromise()
.then(response => response.json().data)
.catch(this.handleError);
}
private handleError(error: any): Promise<any> {
console.error('An error occurred', error);
return Promise.reject(error.message || error);
}
}
如何使用代理服务器进行配置?
有用的额外信息:我应该使用哪些代理服务器进行开发?
答案 0 :(得分:1)
感谢对Cors Proxy&#39;的评论。
我找到了服务:http://cors-proxy.htmldriven.com并且能够通过使用他们的网址从darksky获取数据。
private weatherUrl = 'http://cors-proxy.htmldriven.com/?url=https://api.darksky.net/forecast/[key]/[latitude],[longitude]'