1

在 yahoo 开发者指南中是示例如何检索有关天气的一些信息

    $BASE_URL = "http://query.yahooapis.com/v1/public/yql";
    $yql_query = 'select wind from weather.forecast where woeid in (select woeid from geo.places(1) where text="chicago, il")';
    $yql_query_url = $BASE_URL . "?q=" . urlencode($yql_query) . "&format=json";
    // Make call with cURL
    $session = curl_init($yql_query_url);
    curl_setopt($session, CURLOPT_RETURNTRANSFER,true);
    $json = curl_exec($session);
    // Convert JSON to PHP object
     $phpObj =  json_decode($json);
    var_dump($phpObj);

此示例每天限制 2000 个请求,为了增加限制,我必须使用 API 客户端密钥和密钥密钥。

我怎样才能做授权?有可能在curlor ? 只有通过OAuth 2.0

4

0 回答 0