0
sandee posted
google map api does not show latest reviews
$op1= file_get_contents('https://maps.googleapis.com/maps/api/place/details/json?placeid='.$location_id.'&key=AIzaSyD11s_0phHqFn-ez97gYqSFz48BROW5KPE');
$array1=json_decode($op1);
$review=(array)$array1;
print_r($review);
it does not show latest review of google map location which recently add some min ago . i can see it but google map api does not able to fetch latest review .
so can you correct me pls where i doing wrong to grab latest review .