使用street View Publish API上传带有标题和gps的全景图像无法正常工作

时间:2017-08-31 11:49:59

标签: php google-api google-api-php-client google-api-client google-streetview-publish

我尝试使用Publish Api在街景上上传球形图像。 上传图像数据和地点关联效果很好,但每当我尝试将标题和gps位置数据上传到图像服务器时,响应" OK"但是没有标题和位置与图像相关联。

这是我用于信息上传最后一步的PHP代码,我真的不知道我错在哪里。

$data['uploadReference']['uploadUrl']=$upload_url;
$data['pose']['heading']=$heading_north;      
$data['pose']['latLngPair']=$latLngPair;    
$data['captureTime']['seconds']=time();    
$data['places']['placeId']=$placeid; 

$data_string = json_encode($data); 


$ch = curl_init('https://streetviewpublish.googleapis.com/v1/photo?key='.$_GOOGLE_API['api_key']);

curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                             
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);     
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);  
curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                     
  'authorization: Bearer '.$_GOOGLE_API['access_token'],
  'Content-Type: application/json',                                             
  'Content-Length: ' . strlen($data_string))                                     
);                                                                                                                   
$result = curl_exec($ch);

curl_close ($ch);

编辑:

我按照建议实施了第二步,但没有任何变化...... 卷曲响应仍然不包含任何错误..

$ch = curl_init('https://streetviewpublish.googleapis.com/v1/photo/'.$photo_id.'?key='.$_GOOGLE_API['api_key'].'&updateMask=pose.heading');                                                                      
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");                                                                     
curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);  
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      
curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                          
        'authorization: Bearer '.$_GOOGLE_API['access_token'],
        'Content-Type: application/json',                                                                                
        'Content-Length: ' . strlen($data_string))                                                                       
    );                                                                                                                                                                                                                                   
$json_response=curl_exec($ch);
curl_close ($ch);
echo $json_response;

EDIT2:此程序有效,但谷歌api很慢,编辑的数据会在几分钟内显示出来..

EDIT3(求助):GET照片(列表)有一些问题。要获得刚更新的正确值,您需要请求GET照片(单个)以强制进行有效的缓存更新。

1 个答案:

答案 0 :(得分:1)

尝试使用photo.update在第二步中设置值。不要忘记为值设置updateMask。