Giter Club home page Giter Club logo

Comments (4)

stephangroen avatar stephangroen commented on July 19, 2024

This can happen if either the (intermediate) certificates are not correctly installed on the remote server, or your server doesn't recognize/accept the intermediate SSL certificates.

The certificates on the Moneybird server seem correct. You could contact Moneybird about this, maybe they can verify the chain on their side is correct.

from moneybird-php-client.

CNVeerman avatar CNVeerman commented on July 19, 2024

Thanks, It was the certificate on my server. I added the file cacert.pem and set the location in php.ini
This fixed the problem.
Still I'm doing something wrong.

First I made a file with the following code:

require __DIR__ . '/vendor/autoload.php';
$connection = new \Picqer\Financials\Moneybird\Connection();
$connection->setRedirectUrl('http://localhost:8080/callback');
$connection->setClientId('CLIENTID');
$connection->setClientSecret('CLIENTSECRET');
$connection->redirectForAuthorization();

This gives an AutorizationCode.

Then I added the autorizationcode to this part:

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

$connection = new \Picqer\Financials\Moneybird\Connection();
$connection->setRedirectUrl('http://localhost:8080/callback');
$connection->setClientId('CLIENTID');
$connection->setClientSecret('SECRET');

$connection->setAuthorizationCode('AUTHORIZATIONCODE');

$moneybird = new \Picqer\Financials\Moneybird\Moneybird($connection);

try {
    $connection->connect();
} catch (\Exception $e) {
    throw new Exception('Could not connect to Moneybird: ' . $e->getMessage());
}

But when I run the second part it gives me an error saying the authorazation code is expired or withdrawn.

I hope you can help me establish the connection.

Thanks in advance.

from moneybird-php-client.

stephangroen avatar stephangroen commented on July 19, 2024

You're welcome!

You should try it with the example.php file and work from there. It has to be something wrong in the auth process on your side.

from moneybird-php-client.

CNVeerman avatar CNVeerman commented on July 19, 2024

Thanks! I have a connection.

from moneybird-php-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.