
Jon Hatto
- Total activity 17
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 5
Activity overview
Latest activity by Jon Hatto-
Jon Hatto commented,
Don't worry - I found the answer: http://stackoverflow.com/questions/16931352/php-verify-webhook-with-the-podio-api
-
Jon Hatto created a post,
Web Hooks - How do I verify?
The developer doc says "When the hook is verified a call is made with the "type" parameter set to "hook.verify" and the "code" parameter set to the code required to validate the hook. Use this code...
-
Jon Hatto commented,
Who wants a free run of our Podio Print system? We haven't built the account system to allow sign-ups and probably won't for a while, but I'd like to get some feedback on the usability. All we nee...
-
Jon Hatto commented,
Hi Andreas, I think it's app auth: Podio::authenticate('app', array('app_id' => $app_id, 'app_token' => $app_token));
-
Jon Hatto commented,
Hello everyone! If anyone would like to trial our Podio View PDF / Printing module, please send the following information to jon@sympact.com.au: app ID Client ID Client Secret App Token Or jus...
-
Jon Hatto created a post,
API View has issues with timezones
Hello, I am using the API to print a list of items using a view as a filter. I am using PodioItem::filter_by_view($app_id,$viewid,array('limit' => 500)) to get the data using PHP. The problem is...
-
Jon Hatto commented,
We offer a Podio API module that allows you to print views to PDF which can than be printed. If you are interested, please email: mail (at) sympact (dot) com (dot) au Sara, I'm not sure if I'm al...
-
Jon Hatto commented,
Got it figured out - humanized_value is my friend :)
-
Jon Hatto commented,
Also, this prints the title, but not the due date: $item_collection = PodioItem::filter_by_view($app_id,$view_id); foreach($item_collection['items'] as $object) { foreach($object as $item) { echo ...
-
Jon Hatto commented,
Thanks Andreas, I'm trying to follow the example, but it still doesn't seem to work: $itemsarray = PodioItem::filter_by_view($app_id,$view_id); if (is_array($itemsarray)) { foreach($itemsarray as...