Search code examples
phpcurlgoogle-apigoogle-my-business-api

Getting method not found in google my business api


I have to try to fetch review using google my business API but I am getting method not found. If I use the post method then it returns null. Here is my curl code.

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $api_end_point_url); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer '. $authorization,'Content-Type: application/json'));
$data1 = json_decode(curl_exec($ch), true);
dd(curl_exec($ch));

Solution

  • I got the issue. By mistake i was used other gmail which don't have google my business access. For that reason API returns method not found.