Yahoo Weather APIで問題が発生したのは、データを提供していないためです。 YDN Webサイトにアクセスした後、3月15日からすべてのリクエストをOAuth 1に更新する必要があることがわかりました(ただし、今日は作業を開始しました!)。アプリキーとシークレットを使用する必要がある場合、リクエストURLはどのようになりますか?
以前、私はそのようなリクエスト文字列を取得しました:https://query.yahooapis.com/v1/public/yql?q=SOME_QUERY&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=
[〜#〜] update [〜#〜]
最初にこの質問をした13分後に、/ v1/public /エンドポイントを使用したAPI呼び出しが再び機能します。しかし、私の質問に対する答えを得るのは私にとってまだ面白いです。
[〜#〜] update [〜#〜]
再びダウンしています:(
次のような認証なしでもう一度クエリを作成できます。
https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22nome%2C%20ak%22)&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys
誰にとっても役立つものであった場合の以前の回答。ヤフーの変更の特定の期間中に彼らは働いた。
Yahooアカウントを作成してから https://developer.yahoo.com/apps/create/ でWebアプリケーションを作成する必要があります。
次に、OAuthライブラリを使用して、クライアントIDとクライアントシークレットを適切にエンコードします。 Yahooサンプルページ &a- Paul Donnellyによる2008年のブログ記事 これは、天気フィードを要求するために使用するエンコードされたURLを生成します。
//Fill in your consumer Key & Secret from Yahoo's App & adjust location as needed.
//This Key & Secret combination is invalid & won't work for you
var consumerKey = "dj0yJmk9NkRjbXpjUEhPbjlnJmQ9WVdrOVFUQTFaV2wxTjJrbXnHbz3NQSktJnM9Y29uc3VtZXJzZWNyZXQmeD0wOQ--";
var consumerSecret = "9bea8a9k3934d16365ek7e23e0abo1bba4q5c03c";
var locationToQuery = "90210"; //Can be Zip code or anything that works in the query select woeid from geo.places(1) where text=<Your Location>
var makeSignedRequest = function(ck,cs,loc) {
var encodedurl = "https://query.yahooapis.com/v1/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22"+loc+"%22)&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";
var accessor = { consumerSecret: cs, tokenSecret: ""};
var message = { action: encodedurl, method: "GET", parameters: [["oauth_version","1.0"],["oauth_consumer_key",ck]]};
OAuth.setTimestampAndNonce(message);
OAuth.SignatureMethod.sign(message, accessor);
var parameterMap = OAuth.getParameterMap(message);
var baseStr = OAuth.decodeForm(OAuth.SignatureMethod.getBaseString(message));
var theSig = "";
if (parameterMap.parameters) {
for (var item in parameterMap.parameters) {
for (var subitem in parameterMap.parameters[item]) {
if (parameterMap.parameters[item][subitem] == "oauth_signature") {
theSig = parameterMap.parameters[item][1];
break;
}
}
}
}
var paramList = baseStr[2][0].split("&");
paramList.Push("oauth_signature="+ encodeURIComponent(theSig));
paramList.sort(function(a,b) {
if (a[0] < b[0]) return -1;
if (a[0] > b[0]) return 1;
if (a[1] < b[1]) return -1;
if (a[1] > b[1]) return 1;
return 0;
});
var locString = "";
for (var x in paramList) {
locString += paramList[x] + "&";
}
var finalStr = baseStr[1][0] + "?" + locString.slice(0,locString.length - 1);
return finalStr;
};
//Use the encodedURL to make your request
var encodedURL = makeSignedRequest(consumerKey, consumerSecret, locationToQuery);
消費者キーまたは消費者の秘密を公開しないでください。このPlunkrで独自のYahoo資格情報を使用できます。 http://plnkr.co/edit/EvLbgs
残念ながら、現時点では、サーバーはダウンしてそのアプリを作成しています。理想的には、それらがバックアップされたら、サーバー側のコードを使用してoauthの部分を実行できます。その場合はこの回答を編集します。YahooによるとURLは同じです/ public部分を除きます。大きな違いは、アカウントを認証するURLを含むリクエストヘッダーを送信する必要があることです。
それまでの一時的な修正です。郵便番号でYQLクエリgeo.placesを使用してwoeidを取得できます。
select * from geo.places where text=90210 limit 1
その後、そこからwoeidを取得し、次のURLでそれを使用してxmlフィードを取得できます。
http://weather.yahooapis.com/forecastrss?w=WOEID_GOES_HERE
この一時的な修正の例としてPlunkerを作成しました: http://plnkr.co/edit/dClPDtnToMhHqvKpfCzj?p=preview
JQueryを使用しているが、その要点は次のとおりです。
var zipCode = 90210;
$.ajax({
dataType: "json",
headers: { "Accept": "application/json; odata=verbose" },
url: "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20geo.places%20where%20text%3D"+zipCode+"%20limit%201&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys",
beforeSend: function(xhr){xhr.setRequestHeader('Accept', 'application/json; odata=verbose');},
success: function(data){
$.getJSON("https://query.yahooapis.com/v1/public/yql?callback=?", {
q: "select * from xml where url=\"https://weather.yahooapis.com/forecastrss?w="+data.query.results.place.locality1.woeid+"\"",
format: "json"
},function (data) {
var weather = data.query.results.rss.channel;
var html = '<div><span class="temperature">'+weather.item.condition.temp+'<span class="degree">°</span><sup>'+weather.units.temperature+'</sup></span><br><span class="wind-chill">Feels like: '+weather.wind.chill+'<span class="degree">°</span></span></div></a>';
$("#weather").html(html);
});
},
});
Yosdkを使用した二本足認証を使用して、ついにyql天気が再び機能するようになりました:( (https://github.com/isaacs/authentipede )
そして、このスクリプトを使用して
<?php
include_once("yosdk/lib/Yahoo.inc");
define("API_KEY","your-api-key-here");
define("SHARED_SECRET","your-secret-here");
YahooLogger::setDebug(true);
$twoleg = new YahooApplication (API_KEY, SHARED_SECRET);
$query = 'select * from weather.forecast where woeid in (select woeid from geo.places(1) where text="84054") and u="f"';
print_r ($results);
私はこの議論からこれを見つけました:( どのようにoauth歴史的な株式データのYQLで始めますか? )
どうやら、それはPublic APIを使用して動作しなくなることを意図しています。今のところ、OAuth through Secret Key
を使用する必要があります。