1

我正在尝试使用 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 photo (single) 以强制进行有效的缓存更新。

4

1 回答 1

1

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

于 2017-08-31T14:48:03.513 回答