podio

The user with id # does not have the right view on profile with id #

∥☆過路亽.° 提交于 2021-01-27 14:15:19
问题 I am attempting to add a contact to a contact field, the field currently has no information in the app. I originally attempted this through app authentication but found this post on Podio forum and this on here and changed authentication to user. The user is a workspace admin, the profile_id I am adding is a workspace member and the app has no restrictions on it. What am I missing and how do I resolve the issue? $item_id = 1111111; $field_id = 2222222; $profile_id = 3333333; Podio:

Podio Refresh token Expiry

ε祈祈猫儿з 提交于 2020-01-07 05:45:32
问题 I am building an app that allows people to generate simple emails - so I want to give the users a plug and forget experience. Sign in once and it just works.when you make changes to your podio account, a email is triggered via webhooks I understand that the podio refresh token handed over by Podio exists for 28 days.While this works perfectly fine initially, but after 28 days, my app will stop working for users who signed up with Podio and expect that it works flawlessly. What makes it even

aggregating responses for a PodioItem:filter() call

北城以北 提交于 2020-01-06 12:55:16
问题 I am trying to find a good way to combine multiple responses from PodioItem::filter into one array, or even one PodioItemCollection. Assuming there 221 items in a podio app, and I was using a limit of 100, then I would get 3 responses of 100, 100, and 33. After getting them I would like to work with them as a one array or PodioCollection. How can add to append the PodioItemCollections together? I think the offsetSet() function only adds one Item at a time. Currently I am using the _get_items(

Podio authentication read permission

泪湿孤枕 提交于 2020-01-02 07:17:38
问题 I would like to use server-side flow to get read access to user's spaces. Here is my login URL https://podio.com/oauth/authorize?client_id=YOUR_APP_ID&redirect_uri=YOUR_URL&scope=space:read But Podio asking me full permission. I tried different options https://developers.podio.com/authentication/scopes 回答1: The scope argument is currently in Beta only and therefore not available for everybody. We still have some work to do on the granular authentication project before we are able to release

SSL certificate error: unable to get local issuer certificate when authenticating with Podio

放肆的年华 提交于 2019-12-25 04:08:25
问题 I am trying to use the Podio API for the first time, and am trying to run the Hello World script on this page, but I keep getting this error: Here is my code: <?php require_once './vendor/podio/podio-php/PodioAPI.php'; $client_id = "<my_id>"; $client_secret = "<my_secret>"; $app_id = "<my_app_id>"; $app_token = "<my_app_token>"; Podio::setup($client_id, $client_secret); Podio::authenticate_with_app($app_id, $app_token); $items = PodioItem::filter($app_id); print "My app has ".count($items)."

SSL certificate error: unable to get local issuer certificate when authenticating with Podio

给你一囗甜甜゛ 提交于 2019-12-25 04:08:06
问题 I am trying to use the Podio API for the first time, and am trying to run the Hello World script on this page, but I keep getting this error: Here is my code: <?php require_once './vendor/podio/podio-php/PodioAPI.php'; $client_id = "<my_id>"; $client_secret = "<my_secret>"; $app_id = "<my_app_id>"; $app_token = "<my_app_token>"; Podio::setup($client_id, $client_secret); Podio::authenticate_with_app($app_id, $app_token); $items = PodioItem::filter($app_id); print "My app has ".count($items)."

Podio View returns too many fields

你离开我真会死。 提交于 2019-12-25 01:09:56
问题 I'm using the API call Items: Filter items by view POST /item/app/{app_id}/filter/{view_id}/ The issue I'm having is that Podio is returning many fields specifically excluded from the view. The app has many calculation fields which contain a lot of data. I've defined a view to only return the fields I'm interested in, and in the UI in table view, it shows correctly (only 2 fields are included in the view). But when fetching the view data via API, I get all the calculation fields in the app

Podio: which TimeZone is used while setting DateTime field value

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-19 08:30:42
问题 While creating new item or updating existing item using Podio API, and setting DateTime field value to: 2016-10-21 14:15:00 (as example). Which timezone will be used to store this DateTime? E.g. request : app_id = <some app with title and date fields> content = {'title' => 'Date set to "14:15"', 'date' => {'start' => '2016-10-21 14:15:00', 'end' => '2016-10-21 15:00:00'}} item = Podio::Item.create(app_id, 'fields' => content) Result : 'start_date_utc' => 2016-10-21 'end' => 2016-10-21 15:00

How to get the external_id in a hook event

自闭症网瘾萝莉.ら 提交于 2019-12-13 08:04:18
问题 I have a hook, and I want to get the external_id. Could you please help me? which event do I need to use to get the external_id? 回答1: There is a method to details of an item https://developers.podio.com/doc/items/get-item-22360 Here I have attached the code example of Java SDK. Hope it helps import java.io.Serializable; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import com.podio.app.AppAPI; import com.podio.app.ApplicationField; import

Does the refresh token expire and if so when?

拜拜、爱过 提交于 2019-12-12 07:13:06
问题 I have read the PODIO documentation. I have in particular contemplated the following statement concerning use of the refresh_token : This request returns the same data as above, and you can continue to do this over and over again, to keep your application authenticated without having to ask the user to re-authenticate. Does this mean that the refresh_token will be indefinitely valid or does it expire: X days after being issued; or X days after the last use of it for obtaining a new access