
Rafael Mariano
- Total activity 23
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 8
- Subscriptions 6
Activity overview
Latest activity by Rafael Mariano-
Rafael Mariano commented,
fixed!!
-
Rafael Mariano created a post,
Add contact name in my Item
AnsweredHi! Friends, I can create items through it: PodioItem::create('1111111', array('fields' => array( "title" => "Task name", "other" => "strin text") )); And it works well! However there are o...
-
Rafael Mariano commented,
[UPDATE]: This no work: // Get a PodioCollection of tasks $tasks = PodioTask::get_all(array('responsible' => '784878' )); // See how large the collection is print "The collection has ".count($task...
-
Rafael Mariano created a post,
How get all Task title and task_id by user_id
After the user logs in, I will use your ID to load your tasks . I can already load deliveries, but I can not carry their tasks. $field_id = 'title'; //Need some change here ? $collection ...
-
Rafael Mariano commented,
Managed to solve , but unfortunately did not find sufficient contributions to solve this problem. Solution : You should pass a parameter in the authenticate ( ) function with the value ' refresh_to...
-
Rafael Mariano created a post,
Error type invalid_grant and OAuth code is invalid - PHP
AnsweredHow to avoid the error: "Error type invalid_grant and the message Sorry , your OAuth code is invalid . " , With the session handling ? I have this: { "access_token":"adsdwgwde34weggfefds148b886...
-
Rafael Mariano created a post,
What is error: Authentication as app is not allowed for this method
Fatal error: Uncaught PodioForbiddenError: "Authentication as app is not allowed for this method" Request URL: http://api.podio.com/user/status Stack Trace: #0 /home/pipadigi/public_html/timesheets...
-
Rafael Mariano created a post,
Best work to list items
AnsweredI need to know the best practices to load items of my tasks . So I'm doing : Podio :: setup () ; and Podio :: authenticate_with_app (); Every time the page is loaded , a list of 102 itemss are ...
-
Rafael Mariano created a post,
How list all task id by deliverable
AnsweredI need list all id of an app deliverable. Thanks all! This work, but only get 20 id: $filtro = PodioItem::filter('1035892'); foreach ($filtro as $value) { print "ID: ".$value->item_id.'<br />';...