Skip to content

Instantly share code, notes, and snippets.

View vijayrana99's full-sized avatar

Vijay Rana vijayrana99

  • Intuji
  • Nepal
View GitHub Profile
@vijayrana99
vijayrana99 / google-reviews.php
Created March 3, 2021 13:58
Retrieve google reviews on website using Curl Request in PHP
<?php
$cid = 1417698146920752799; //CID of a place can be genrated from https://pleper.com/index.php?do=tools&sdo=cid_converter
//execute curl
$url = 'https://maps.googleapis.com/maps/api/place/details/json?cid='.$cid.'&key=<API-KEY>';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$data = curl_exec($ch);