IT Knowledge Base

~ Without sacrifice, there can be no victory ~

發佈日期:

利用Yahoo Weather API‧取得地點的WOE ID及天氣資料

01. 疫情帶來的好處,就是將陳年已久的東西,一次過在家中避疫的日子帶返出來。這個Yahoo Weather的程式,差不多已有3、4年的歷史,不能正常工作是正常不過的事。所以今天就要花時間再改動一下,希望可以再正常運作。

02. 自2019年Yahoo Weather API改用了OAuth 2.0授權後,要取得天氣資料就要改用新方法。而在『Yahoo Weather API Documentation』,可以找到用不同程式,連接Yahoo Weather API的程式碼,只要改動一下,就可以做到想要的效果。

03. 要做的工作很簡單,就是要由地點取得WOE ID,再下載有關地點的天氣資料。

04. 程式碼我用了熟悉的PHP例子。改動的地方只有將原來單個的搜索,改為一個LOOPING的方法。

$array = array("Hong Kong","Macau","Kuching");
for ($i=0;$i<sizeof($array);$i++) {
$query = array('location' => $array[$i],'format' => 'json',);
getinfo($query);
}

05. 目的就是在營幕顯示搜尋的結果,及是否有出現錯誤。

06. 最後當然是要取得Yahoo Weather天氣的JSON檔案。

07. 原整的程式碼。

<?php
// Copyright 2019 Oath Inc. Licensed under the terms of the zLib license see https://opensource.org/licenses/Zlib for terms.


function buildBaseString($baseURI, $method, $params) {
$r = array();
ksort($params);
foreach($params as $key => $value) {
$r[] = "$key=" . rawurlencode($value);
}
return $method . "&" . rawurlencode($baseURI) . '&' . rawurlencode(implode('&', $r));
}

function buildAuthorizationHeader($oauth) {
$r = 'Authorization: OAuth ';
$values = array();
foreach($oauth as $key=>$value) {
$values[] = "$key=\"" . rawurlencode($value) . "\"";
}
$r .= implode(', ', $values);
return $r;
}

$array = array("Hong Kong","Macau","Kuching");
for ($i=0;$i<sizeof($array);$i++) {
$query = array('location' => $array[$i],'format' => 'json',);
getinfo($query);
}

function getinfo($query) {
$url = 'https://weather-ydn-yql.media.yahoo.com/forecastrss';
$app_id = 'Your app ID';
$consumer_key = 'Your consumer key';
$consumer_secret = 'Your consumer secret';

$oauth = array(
'oauth_consumer_key' => $consumer_key,
'oauth_nonce' => uniqid(mt_rand(1, 3000)),
'oauth_signature_method' => 'HMAC-SHA1',
'oauth_timestamp' => time(),
'oauth_version' => '1.0'
);

$base_info = buildBaseString($url, 'GET', array_merge($query, $oauth));
$composite_key = rawurlencode($consumer_secret) . '&';
$oauth_signature = base64_encode(hash_hmac('sha1', $base_info, $composite_key, true));
$oauth['oauth_signature'] = $oauth_signature;

$header = array(
buildAuthorizationHeader($oauth),
'X-Yahoo-App-Id: ' . $app_id
);
$options = array(
CURLOPT_HTTPHEADER => $header,
CURLOPT_HEADER => false,
CURLOPT_URL => $url . '?' . http_build_query($query),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => false
);

$ch = curl_init();
curl_setopt_array($ch, $options);
$response = curl_exec($ch);
curl_close($ch);

print_r(json_decode($response)->location->woeid.' / '.json_decode($response)->location->city);
$file = (json_decode($response)->location->woeid).'.json';
file_put_contents($file, $response);
print_r("<br><br>");
}
?>

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *