1

我们正在尝试使用 Google Place Photo Requests

https://developers.google.com/places/documentation/photos#place_photo_requests

用于获取照片的 API,但不断获取超出配额的图像。

我们已经注册了一个付费账户,并且设置了一个全新的账户,并且不断收到这个错误。

为了重现我们:

1) 首先通过 PHP从服务器(/maps/api/place/details/json)运行 Place Details 请求。

2) 然后从这个结果集中我们获取照片参考(['result']['photos'][0]['photo_reference'])

3) 使用我们称为/maps/api/place/photo的 photoreference、key、sensor 和 maxwidth 变量(通过 PHP)。

我们似乎无法让它发挥作用。有没有其他人成功使用过这个或有什么建议?

4

2 回答 2

0

听起来您要么向我们发送了很多请求,要么没有将密钥添加到照片获取中。你有任何成功的请求吗?如果没有,我怀疑您的钥匙丢失和/或不正确。

于 2013-08-29T06:22:34.753 回答
0

试试这个代码..它对我有用

<h3>Images From Google </h3>
<?php

$company_name = 'walmart';
$data_ref = file_get_contents("https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=Latitude ,Longitude&radius=100&name=".$company_name."&types=store&sensor=false&key=MYKEY");


$data_ref_de = json_decode($data_ref);

if($data_ref_de->status=='OK')
{


    foreach($data_ref_de->results as $result)
    {
        if(isset($result->photos) && count($result->photos))
        {
            foreach($result->photos as $photos)
            {?>
               //Display Image

            <img src="https://maps.googleapis.com/maps/api/place/photo?maxwidth=600&photoreference=<?php echo $photos->photo_reference; ?>&sensor=true&key=MYKEY" />

            <?php 
            }
        }
    }

}

并确保您已启用该Places API服务

于 2014-02-01T05:26:25.110 回答