podio .net ID 为 XXXXXXXX 的应用程序在 ID 为 XXXXXXX 的个人资料上没有正确的视图
podio .net The app with id XXXXXXXX does not have the right view on profile with id XXXXXXX
我正在尝试将联系人分配给正在创建的新项目。
但在创建项目时出现错误:
403
forbidden
The app with id 10923855 does not have the right view on profile with id 2609818
代码段:
/* Text Field with external_id 'resposible' */
var _responsible = myNewItem.Field<ContactItemField>("responsible");
_responsible.ContactId = 2609818;
我检查了应用权限,没有发现任何错误。
任何帮助将不胜感激。
谢谢!
当您作为应用进行身份验证时,您只能访问该特定应用中的项目。您无权访问所有工作区联系人,只能访问应用创建的或已在该应用中使用的联系人。
我正在尝试将联系人分配给正在创建的新项目。 但在创建项目时出现错误:
403
forbidden
The app with id 10923855 does not have the right view on profile with id 2609818
代码段:
/* Text Field with external_id 'resposible' */
var _responsible = myNewItem.Field<ContactItemField>("responsible");
_responsible.ContactId = 2609818;
我检查了应用权限,没有发现任何错误。 任何帮助将不胜感激。 谢谢!
当您作为应用进行身份验证时,您只能访问该特定应用中的项目。您无权访问所有工作区联系人,只能访问应用创建的或已在该应用中使用的联系人。