0

I am new to Uber API, I just started exploring the Uber API's. I have downloaded the complete Uber API repository from https://github.com/stevenmaguire/uber-php/issues/17

I have downloaded the complete repository using the composer. It shows that all dependencies were downloaded successfully. but when I am using the API, I am getting this error

Blockquote"SSL certificate problem: self signed certificate in certificate chain"

Please help me in this, I have raised this issue 8 days back on the Github no one is replied.

Here is my code

Thanks in Advance. Rakesh

Here is my code`

<?php

require __DIR__ . '/vendor/autoload.php';

$client = new Stevenmaguire\Uber\Client(array(
    'access_token' => '********',
    'server_token' => '********',
    'use_sandbox'  => false, // optional, default false
    'version'      => 'v1.2', // optional, default 'v1.2'
    'locale'       => 'en_US', // optional, default 'en_US'
));

$products = $client->getProducts(array(
    'latitude' => '41.85582993',
    'longitude' => '-87.62730337'
));

var_dump($products);

?>

`

0 Answers0