<?php
class MyClass Extends CI_controller{
public function index(){
$jsonpost = '{
"location": {
"lat": -33.8669710,
"lng": 151.1958750
},
"accuracy": 50,
"name": "Google Shoes!",
"phone_number": "(02) 9374 4000",
"address": "48 Pirrama Road, Pyrmont, NSW 2009, Australia",
"types": ["shoe_store"],
"website": "http://www.google.com.au/",
"language": "en-AU"}';
$url = "https://maps.googleapis.com/maps/api/place/add/json?key=AIzaSyCuM8rztQMtRpD2ivmjgJaLZgWloyq12l4";
$results = $this->ProcessCurl ($url, $jsonpost);
echo $results."<BR>";
}
public function ProcessCurl($URL, $fieldString){ //Initiate Curl request and send back the result
$ch = curl_init();
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
curl_setopt($ch, CURLOPT_URL, $URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_VERBOSE, 1);
//curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $fieldString);
$resulta = curl_exec ($ch);
if (curl_errno($ch)) {
print curl_error($ch);
} else {
curl_close($ch);
}
echo $resulta;
}
}
Я использую приведенный фрагмент кода, чтобы добавить место с Google Place API. Но я получаю ошибку
SSL certificate problem: unable to get local issuer certificate
так как я использую платформу codeigniter, мне нужно добавить библиотеку в каркас. На самом деле я пытаюсь это в первый раз, и я изучил следующие документы
https://developers.google.com/places/documentation/search#PlaceSearchRequests
https://developers.google.com/places/documentation/actions#place
и пытается интегрировать процесс в PHP. Как мне это сделать.
Добавьте эту строку:
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
чтобы избежать проверки сертификатов.
Других решений пока нет …