php-trello-api icon indicating copy to clipboard operation
php-trello-api copied to clipboard

A simple Object Oriented wrapper for the Trello API, written in PHP5.

Results 57 php-trello-api issues
Sort by recently updated
recently updated
newest added

Not workin anymore since api updated from Atlassian: https://developer.atlassian.com/changelog/#CHANGE-1459 403 ERROR The request could not be satisfied. Bad request. We can't connect to the server for this app or website...

Hi, From January, my code had a bug. I can't create new card. I tried my key and token, that works in postman. I couldn't find the problem, do you...

Hey folks! This SDK is not working... but the @matteocacciola already solved this, follows the PR: [pull request #84](https://github.com/cdaguerre/php-trello-api/pull/84) Please merge this PR guys! @cdaguerre @matteocacciola

Description of Trello Card start return extra characters like: `[](Planyway_Data-DO_NOT_DELETE)[](eJyVUk1r4zAQ/S86p2UkW5LlW4i7ECg9pOketixF1oy6oo4dLKVQQv575aSFTUtgF3QQ8+Z9aDR79kpjDEPPavZashlDm+zPU2mJrOYAMxbivOsa+8bqNO5oxmKyY8oEAUJcQXElJiL1+LWEO7oN/cv6bUsZah5unu7X89X6HPmUPuI3d01GB+8jpWZHZ4JrMDVAPtcA8Cu3bccwjCFlbs7odjENmyanZ/WeOTviaugmgcV8NWme8B+BOlxkMJ46H/csTLGVENK3Vmpecu+UQzBYaqnPictjK1dlWbVSEXhteIuaKo9Vy77PKcTFsNl2lCgTve0iHWbnhpURBgtTeSoEEseLho4KR0Ziqz1xZb0/Dvi/DVsFWoOX2VBrqwrlLr7QtSQLLwSvjCmrChX+m+HvLPiH3Msy0ebvSed6P6Tgg7MpL1c8lbq8BR/X/JfPobfdRFp+RC5KDgjgnCsk1960svTADod3sqbUtg==)` What does It mean and how to remove that?

Error on request, tried to install EventDispatcher separately, but did not help. My code; `protected $client; public function __construct() { $this->client = new Client(); $this->client->authenticate(getenv('TRELLO_API_KEY'), getenv('TRELLO_TOKEN'),Client::AUTH_URL_CLIENT_ID); } public function createCard(Task...

If you get non-existent card `$getCard = $client->api('card')->show('123456', ['fields' => 'all', 'customFieldItems' => true]);` You get Fatal Error Instead of correct throw RuntimeException: Fatal error: Uncaught Error: Cannot use object...

I tried to install this but my guzzle is too new: > matteocacciola/php-trello-api 2.0.0 requires guzzlehttp/guzzle ~5.3 -> found guzzlehttp/guzzle[5.3.0, ..., 5.3.4] but the package is fixed to 7.3.0 (lock...

Can someone give me hint, how I can get all lists in a specific board? I tried `$boards = $manager->getBoard($board_id)->getLists();` but this is the point where I stuck.

It's been about 5 months since the last commit and the last version released was in 2015. Is there any plans to continue maintaining this package or has it been...

lib/Trello/Api/Card.php is missing the bits to delete/remove a card, I'll just leave this here: ``` public function remove($id) { return $this->delete($this->getPath().'/'.rawurlencode($id)); } ```