When i run the Coin Base Transactions offline it works, but when i put it online it fails. Here is my code for the transaction.
$configuration = Configuration::apiKey($apiKey, $apiSecret);
$client = Client::create($configuration);
$account = $client->getPrimaryAccount();
$address = new Address([
'name' => 'New Address19'
]);
$add = $client->createAccountAddress($account, $address);
$addressId = $client->getAccountAddresses($account);
$addresses = $client->getAccountAddress($account, $addressId->getFirstId());
echo "Your address is: ".json_encode($addresses->getAddress())."<br>";
ive googled but all in vain, the answers i get from here of updatind the certificate in the etc folder also not working. Someone help me
I had teh same problem. The solution for was to download the cacert.pem file from:
https://curl.se/docs/caextract.html
Copy it to the Coinbase API
etc
folder (same place where you will findca-coinbase.crt
).Then edit
src\COnfiguration.php
to refer to this new file: