在 google 我的公司 api 中找不到获取方法
Getting method not found in google my business api
我必须尝试使用 google 我的公司 API 获取评论,但我找不到方法。
如果我使用 post 方法,那么它 returns 为空。
这是我的卷曲代码。
$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));
我知道了。
我错误地使用了其他没有 google 我的业务访问权限的 gmail。
因此 API returns 找不到方法。
我必须尝试使用 google 我的公司 API 获取评论,但我找不到方法。 如果我使用 post 方法,那么它 returns 为空。 这是我的卷曲代码。
$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));
我知道了。 我错误地使用了其他没有 google 我的业务访问权限的 gmail。 因此 API returns 找不到方法。