podio

Podio API Creating comments with additional attributes

十年热恋 提交于 2019-12-12 04:14:47
问题 I am working on migrating data from multiple app items into one. I was able to move all the data over but I need to move comments and files as well. I know the API allows you to create comments from an App (which I am doing) but I want to be able to create the comment and pass the original information (message,creator,created_on). The API documentation doesn't show what are all the "possible" attributes for creating a comment. Thanks. Rico. 回答1: All details on how to create new comment are

How to avoid Podio reauthentification each and every time I query data from Podio?

≯℡__Kan透↙ 提交于 2019-12-12 03:52:44
问题 I'm writing a codeigniter controller. Users log in to the website as Podio users. After logging in, they are redirected to dashboard. Function test_auth makes the authentification and redirects users to dashboard. The problem is : in dashboard function I have to reauthentificate if I want to call, for example, function PodioOrganization::get_all( ); Here is my code: class User extends CI_Controller { /** * __construct function. * * @access public * @return void */ public function __construct(

File downloaded via Podio Export API is not readable through code

旧巷老猫 提交于 2019-12-12 03:43:23
问题 Use-case: Export data from different apps using batch EXPORT APIs to merge into a master excel file and use it for reporting purpose... Implementation Details I'm using Podio export API to get data from an application. Application name is Kall8-number-text (as an example).. here is the code snippet Code Snippet $batch_id = PodioItem::export(11804702,"xlsx",array("filters" => array( "kall8-number-text" => "510-592-5916") )); PodioBatch::get( $batch_id ); $file = PodioFile::get($file_id); //

podio .net The app with id XXXXXXXX does not have the right view on profile with id XXXXXXX

不问归期 提交于 2019-12-12 03:26:34
问题 i'm trying to assign a contact to a new item that is being created. but at item creation I get the error: 403 forbidden The app with id 10923855 does not have the right view on profile with id 2609818 the code segment: /* Text Field with external_id 'resposible' */ var _responsible = myNewItem.Field<ContactItemField>("responsible"); _responsible.ContactId = 2609818; I've checked the app permissions and I cant see anything wrong. any help will be greatly appreciated. thanks! 回答1: When you

Podio Dot Net client library

百般思念 提交于 2019-12-11 18:37:31
问题 Recently Podio stopped support for TLS Version 1 and as per some StackOverflow questions, Podio is suggesting the use of TLS 1.2 or at least TLS 1.1. I have been using the client library specifically https://www.nuget.org/packages/Podio/ and I am using version 1.5.8 and I understand that it is the synchronous version. To make the TLS changes, I need the source code for it. However, I am unable to find the source code for it as https://github.com/podio/podio-dotnet appears to be the async

'Connection to Podio API failed: [35] Unknown SSL protocol error in connection to api.podio.com:443

那年仲夏 提交于 2019-12-11 07:09:37
问题 Using simple podio api things, but overnight I have this message: Fatal error: Uncaught exception 'PodioConnectionError' with message 'Connection to Podio API failed: [35] Unknown SSL protocol error in connection to api.podio.com:443 No SSL have changed from my part, and as long as I know, podio api is the same since 2015... Thanks! 回答1: No SSL have changed from my part, and as long as I know, podio api is the same since 2015... It is very likely that you are using some old TLS stack with no

Podio error when getting apps

試著忘記壹切 提交于 2019-12-11 06:28:28
问题 Error ErrorException: array_merge(): Argument #1 is not an array in /my/server/vendor/podio/podio-php/lib/PodioObject.php:200 Stack trace: #0 [internal function]: Illuminate\Foundation\Bootstrap\HandleExceptions->handleError(2, 'array_merge(): ...', '/my/server/...', 200, Array) #1 /my/server/vendor/podio/podio-php/lib/PodioObject.php(200): array_merge(NULL, Array) #2 /my/server/vendor/podio/podio-php/models/PodioApp.php(39): PodioObject::member(Object(PodioResponse)) #3 /my/path.php(413):

How to get the Podio APP response detail level mini, micro or short?

ぐ巨炮叔叔 提交于 2019-12-11 06:04:08
问题 At many place in the Podio API documentation, it seems that you can specify the level of details that will be in the response: Full/Short/Mini/Micro. For example in the Get App call https://developers.podio.com/doc/applications/get-app-22349 However there is not details on how to specify the level of request in the http request... what is the parameter name/values? I tried: https://api.podio.com/app/?fields=app.view(micro) https://api.podio.com/app/?fields=micro but both responses have the

Podio : Troubles assigning reference for a Relationship app field

别来无恙 提交于 2019-12-11 05:21:28
问题 I programmatically created an app with a relationship app field $app = new PodioApp($attributes); After it had been successfully created, I wanted to create a relationship app field $field_id = PodioAppField::create( array ( "type => "app", "external_id" => "test", "config" => array ( "label" => "Test field", "settings" => array() ) )); Indeed, the field is created in podio. Now, I want to assign the reference app for that relationship field and my code is as follow: $settings = array( "apps"

JSON in Google Apps Script

孤者浪人 提交于 2019-12-08 05:43:39
问题 I am trying to validate a webhook with Podio (https://developers.podio.com/doc/hooks/validate-hook-verificated-215241) using google apps script. Currently I have the following script successfully writing data to a document (after the Podio Post is activated): function doPost(l) { var doc = DocumentApp.openById('1to3-JzhE27-LK0Zw7hEsdYgiSd7xQq7jjp13m6YwRh0'); var jstring = Utilities.jsonStringify(l); doc.appendParagraph(jstring); } With the data appearing as follows: {"queryString":null,