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

2

There are 2 best solutions below

0
On

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 find ca-coinbase.crt).

Then edit src\COnfiguration.php to refer to this new file:

    public function __construct(Authentication $authentication)
    {
        $this->authentication = $authentication;
        $this->apiUrl = self::DEFAULT_API_URL;
        $this->apiVersion = self::DEFAULT_API_VERSION;
//      $this->caBundle = __DIR__.'/../etc/ca-coinbase.crt'; // Replaced with:
        $this->caBundle = __DIR__.'/../etc/cacert.pem';
    }
1
On

$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>";