Google API PHP简单查询示例的问题



我试图得到谷歌简单查询的例子(离开GitHub)工作,不幸的是,一个明确缺乏成功…我得到的是一个255的退出码。

我确定问题出在对Google Server的调用中,所以在代码中添加了一个异常处理程序。程序现在看起来像这样:

<?php
    /*
     * Copyright 2013 Google Inc.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *     http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    include_once "templates/base.php";
    echo pageHeader("Simple API Access");
    /************************************************
    Make a simple API request using a key. In this
    example we're not making a request as a
    specific user, but simply indicating that the
    request comes from our application, and hence
    should use our quota, which is higher than the
    anonymous quota (which is limited per IP).
     ************************************************/
    set_include_path("../src/" . PATH_SEPARATOR . get_include_path());
    require_once 'Google/Client.php';
    require_once 'Google/Service/Books.php';
    /************************************************
    We create the client and set the simple API
    access key. If you comment out the call to
    setDeveloperKey, the request may still succeed
    using the anonymous quota.
     ************************************************/
    $client = new Google_Client();
    $client->setApplicationName("Client_Library_Examples");
    $apiKey = "******************************************";
    if ($apiKey == '<YOUR_API_KEY>') {
        echo missingApiKeyWarning();
    }
    $client->setDeveloperKey($apiKey);
    $service = new Google_Service_Books($client);
    /************************************************
    We make a call to our service, which will
    normally map to the structure of the API.
    In this case $service is Books API, the
    resource is volumes, and the method is
    listVolumes. We pass it a required parameters
    (the query), and an array of named optional
    parameters.
     ************************************************/
    $optParams = array('filter' => 'free-ebooks');

    // next line replaced with an exception handling block
    // $results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);
    try{
        $results = $service->volumes->listVolumes('Henry David Thoreau', $optParams);
        var_dump($results);
    } catch (Exception $e) {
        echo "call error: " .$e->getMessage()."n";
        echo $e->getTraceAsString()."n";
    }
    /************************************************
    This call returns a list of volumes, so we
    can iterate over them as normal with any
    array.
    Some calls will return a single item which we
    can immediately use. The individual responses
    are typed as Google_Service_Books_Volume, but
    can be treated as an array.
     ***********************************************/
    echo "<h3>Results Of Call:</h3>";
    // update to code (off StackOverflow)
    //foreach ($results as $item) {
    //  echo $item['volumeInfo']['title'], "<br /> n";
    //}
    foreach($results->getItems() as $item){
        echo $item->volumeInfo->getTitle(), "<br /> n";
    }
    /************************************************
    This is an example of deferring a call.
     ***********************************************/
    //$client->setDefer(true);
    //$optParams = array('filter' => 'free-ebooks');
    //$request = $service->volumes->listVolumes('Henry David Thoreau', $optParams);
    //$results = $client->execute($request);
    //
    //echo "<h3>Results Of Deferred Call:</h3>";
    //foreach ($results as $item) {
    //  echo $item['volumeInfo']['title'], "<br /> n";
    //}
    //
    echo pageFooter(__FILE__);

错误跟踪如下:

   call error: HTTP Error: Unable to connect: '0'
#0 C:srvGoogleApiGoogleIOAbstract.php(117): 
   Google_IO_Stream->executeRequest(Object(Google_Http_Request))
#1 C:srvGoogleApiGoogleHttpREST.php(42):
   Google_IO_Abstract->makeRequest(Object(Google_Http_Request))
#2 C:srvGoogleApiGoogleClient.php(499): 
   Google_Http_REST::execute(Object(Google_Client), Object(Google_Http_Request))
#3 C:srvGoogleApiGoogleServiceResource.php(195): 
   Google_Client->execute(Object(Google_Http_Request))
#4 C:srvGoogleApiGoogleServiceBooks.php(2304): 
   Google_Service_Resource->call('list', Array, 'Google_Service_...')
#5 C:srvGoogleApisimple-query.php(60): 
   Google_Service_Books_Volumes_Resource->listVolumes('Henry David Tho...', Array)
#6 {main}
<h3>Results Of Call:</h3>
Process finished with exit code 255

如有任何帮助,不胜感激。

注意:这可能只是一个身份验证问题。我是一个远程工作者,无法访问谷歌控制台,所以必须依靠老板发誓他已经提供了正确的密钥!

我实际上是GitHub上的rowanrh。在上面发布之后-没有收到任何帮助-我决定在GitHub上复制这篇文章。

我刚刚通过更改以下PHP.ini设置解决了这个问题:

  1. 我设置(通过取消注释)扩展名=php_openssl.dll -需要'https' url;和
  2. 我设置了时区。谷歌对时间很挑剔,所以这可能影响了结果。
在IDE(我使用PhpStorm)中测试后,我重新启动了Apache,一切都很好!

相关内容

  • 没有找到相关文章

最新更新