2014-05-15 44 views
0

我正在嘗試在我的應用中添加新的聯繫人項目:https://podio.com/myorg-3q695n94um/dealer-sales-a 當前嘗試在應用中添加新的聯繫人項目。但一次又一次地得到這個錯誤。 ID爲8047729的應用程序不會對個人資料的右視圖ID爲123684408" 請求URL:http://api.podio.com/item/app/8047729/ 請幫我解決這個問題PodioForbidden添加聯繫人的錯誤

$item_new_add[] = new PodioContactItemField('customer-name-2'); 

$item_new->fields = $item_new_add; 

$item_new->field('customer-name-2')->set_value($contact_item_val); 

回答

0

你可以看到在設定聯繫人字段值的示例: http://podio.github.io/podio-php/fields/#contact-field

當然,您正在進行身份驗證的實體必須有權訪問您添加的聯繫人。這通常會導致在您作爲應用程序進行身份驗證並嘗試添加不屬於任何項目的聯繫人時出錯那個應用程序

相關問題