podio-php
podio-php copied to clipboard
PHP Client for the Podio API.
I am trying to add a new option to PodioCategoryItemField using the podio php api ``` $field = new \PodioCategoryItemField('test'); // this field exists in Podio $field->add_value( array( 'value'=>array( 'status'=>'active','text'...
Everything was working and still works locally with version 7. However, with version 8.0.17 require_once 'podio-php/PodioAPI.php'; fails, I get HTTP 500 response. Further investigation has shown that the following 👍...
I have 2 servers one is .in while other is .com. On uploading the png file on .in runs perfectly but not on another. What could be the reason? Below...
I want to fetch podio data using field_id and item_id . I use this function and it does not work for me : `$fild_value = PodioItem::get_basic_by_field( $item_id, $field_id );` And...
The file upload to Podio used to work on my website, but it has stopped working. I have updated PodioFile.php with the update, and it now works again on my...
Hi guy, when I try to update any field im my app, and the field "Organization" has values I receive this error: Fatal error: Call to undefined method PodioItemField::api_friendly_values() My...
Hello, I am facing podio issues since few days, I have a website in PHP Codeigniter and I am posting a form and submitting it. It was working before and...
This change allows avoiding the bug about saving an item with calculation fields. `$item = PodioItem::get($item_id);` `// ..... operations` `$item->save();` The code above used to throw an exception when the...
When requesting the Rate Limit / Rate Limit Remaining, when no request has been done yet, the library will crash. There needs to be done some checking if the rate...
Hi there, for more fine grained control it would good if the API could be accessed in a non-static way. Especially for unit testing/mocking this is a must. As a...