podio .net The app with id XXXXXXXX does not have

2019-09-02 02:11发布

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!

标签: .net api podio
1条回答
Summer. ? 凉城
2楼-- · 2019-09-02 02:58

When you authenticate as an app you only have access to items in that specific app. You don't have access to all workspace contacts, only those created by the app or already in use in that app.

查看更多
登录 后发表回答