Podio:获取带有任务的项目
Podio: Get Items with tasks
我正在尝试使用 .Net API 检索与项目关联的任务,但项目中的列表始终为空。我正在使用应用程序身份验证
var item = Podio.ItemService.GetItem(podioGlobalId, false);
if (item.Tasks == null)
{
//there are never any Tasks
}
任务是独立的并与项目相关联,但不是项目的一部分。因此,为了获得附加到项目的任务列表,请使用 get tasks
方法。它的文档在这里:https://developers.podio.com/doc/tasks/get-tasks-77949。
原始 http 请求的用法示例:
GET https://api.podio.com/task/?reference=item:1234;item:5678
我正在尝试使用 .Net API 检索与项目关联的任务,但项目中的列表始终为空。我正在使用应用程序身份验证
var item = Podio.ItemService.GetItem(podioGlobalId, false);
if (item.Tasks == null)
{
//there are never any Tasks
}
任务是独立的并与项目相关联,但不是项目的一部分。因此,为了获得附加到项目的任务列表,请使用 get tasks
方法。它的文档在这里:https://developers.podio.com/doc/tasks/get-tasks-77949。
原始 http 请求的用法示例:
GET https://api.podio.com/task/?reference=item:1234;item:5678