从1月3日开始,Yahoo Weather具有新的天气API,该API需要oAuth pd.Series.replace
现在,我已经从yahoo获取了我的客户ID(消费者密钥)和我的客户秘密(消费者秘密)。我的问题是如何在jquery或javascript中使用oAuth调用此API?
这是通话的样子:
GET /forecastrss?location=sunnyvale,ca HTTP/1.1
Host: weather-ydn-yql.media.yahoo.com
Yahoo-App-Id: YOUR_APP_ID
Authorization: OAuth
oauth_consumer_key="YOUR_CONSUMER_KEY",oauth_signature_method="HMAC-SHA1",oauth_timestamp="YOUR_TIMESTAMP",oauth_nonce="YOUR_NONCE",oauth_version="1.0",oauth_signature="YOUR_GENERATED_SIGNATURE"
cache-control: no-cache
并显示“请在标头中也包含OAuth应用ID”。
在jquery中会是什么样?
我尝试了以下方法:
$.get("https://weather-ydn-yql.media.yahoo.com/forecastrss", { location: "sunnyvale,ca", format: "json", oauth_consumer_key: "Client ID (Consumer Key)", oauth_signature_method: "HMAC-SHA1" } ).done(function( data ) {
console.log("Data Loaded: " + data);
});
我得到这个错误:
ERR_ABORTED 401(未经授权)
答案 0 :(得分:1)
尽管我没有专门运行此代码,但它应该像jQuery中的其他所有get请求一样工作
$.get( url, { location: "sunnyvale,ca", format: "json", oauth_consumer_key: oauth_consumer_key, oauth_signature_method: oauth_signature_method, ... } )
.done(function( data ) {
alert( "Data Loaded: " + data );
});
Ref1:jQuery API https://api.jquery.com/jQuery.get/
Ref2:Yahoo API:https://developer.yahoo.com/weather/documentation.html