laravel-xero icon indicating copy to clipboard operation
laravel-xero copied to clipboard

Laravel package for working with Xero API

Results 9 laravel-xero issues
Sort by recently updated
recently updated
newest added

I believe your resource classes should extend the actual implementations, and not the facades - they are not themselves facades. To make this work you then have to call instance...

Starting with an empty `xero_tokens` table and going through the OAuth flow, everything works fine. However, if you run disconnect and then reconnect later, the tokens seem to break. It's...

We are using: ```php return json_decode($e->getResponse()->getBody()->getContents(), true); ``` getResponse() doesn't exist on the Exception class or the RequestException class. We need to improve the error handling here.

I'm using the following code Xero::contacts()->get(1, 'AccountNumber="10307"') and returns a collection of all contacts and not just the single contact where AccountNumber = 10307 When I use the more raw...

I get the following error after authentication when sent back to the redirect URL: `Data too long for column 'refresh_token'` The token is 256 characters long and the field is...

https://github.com/dcblogdev/laravel-xero/blob/5d99c9e7fd7be5403cd8d7b1a44c07c9c3a710e7/src/Xero.php#L205 When refreshing tokens, the result can be null so we should test if it is an array before storing?

I found the docs link in the youtube video. It would be helpful if there was a link in the README https://dcblog.dev/docs/laravel-xero/v1/introduction

Initially, when I integrated the package, it worked perfectly and stored data in the xero_tokens table. I successfully integrated APIs like contact, invoice, item, etc. However, after running some migration...

I love the work this library does to make it easier to refresh the oauth token. But I've hit an issue doing a simple request: ``` $email = '[email protected]'; $data...