[Buzz\Exception\ClientException]

Issue #6 invalid
DanielF created an issue

Anybody able to help me with this exception?

[Buzz\Exception\ClientException] SSL certificate problem: unable to get local issuer certificate

I'm using the same code like in the example

$repo = new \Bitbucket\API\Repositories\Repository(); $repo->setCredentials( new \Bitbucket\API\Authentication\Basic($bb_user, $bb_pass) );

        $repo->create($addonId, array(
            'description'   => 'addon ' . $addonId,
            'language'      => 'php',
            'is_private'    => true
        ));

Comments (3)

  1. DanielF reporter

    thx, with the comment from @vimishor i was able to locate the problem and then i've used the fastest and easiest solution=>

    class Devtools_Helper_BitbucketClient extends Buzz\Client\Curl{
        protected $verifyPeer = false;
    }
    
  2. Log in to comment