Я использую PHP Google MyBusiness API для своего приложения. У меня есть деловые обзоры.
Теперь я хочу получить любые ответы, связанные с конкретным отзывом. Я могу опубликовать ответ, но хочу получить ответы (ответы) на обзор, используя PHP GMB API.
Как мне это сделать?
увидеть developers.google.com в ответ вы получите reviewReply
объект, который содержит ваш ответ
{
"reviewId": string,
"reviewer": {
object(Reviewer)
},
"starRating": enum(StarRating),
"comment": string,
"createTime": string,
"updateTime": string,
"reviewReply": {
object(ReviewReply)
},
}
чтобы получить обзор, используйте метод get Google_Service_MyBusiness_AccountsLocationsReviews_Resource
class Google_Service_MyBusiness_AccountsLocationsReviews_Resource extends Google_Service_Resource
{
/**
* Returns the specified review. This operation is only valid if the specified
* location is verified. Returns `NOT_FOUND` if the review does not exist, or
* has been deleted. (reviews.get)
*
* @param string $name The name of the review to fetch.
* @param array $optParams Optional parameters.
* @return Google_Service_MyBusiness_Review
*/
public function get($name, $optParams = array())
{
$params = array('name' => $name);
$params = array_merge($params, $optParams);
return $this->call('get', array($params), "Google_Service_MyBusiness_Review");
}
Других решений пока нет …