使用ASANA Python API更新自定义字段

时间:2016-12-21 07:47:23

标签: python api asana asana-api

我正在尝试更新Asana列表中自定义字段的值。我正在使用Official Python client library for the Asana API v1

我的代码目前看起来像这样;

project = "Example Project"
keyword = "Example Task"

print "Logging into ASANA"
api_key = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
client = asana.Client.basic_auth(api_key)
me = client.users.me()
all_projects = next(workspace for workspace in me['workspaces'])
projects = client.projects.find_by_workspace(all_projects['id'])

for project in projects:
    if 'Example Project' not in project['name']:
        continue
    print "Project found."
    print "\t"+project['name']
    print

    tasks = client.tasks.find_by_project(project['id'], {"opt_fields":"this.name,custom_fields"}, iterator_type=None)

    for task in tasks:
        if keyword in task['name']:
            print "Task found:"
            print "\t"+str(task)
            print
            for custom_field in task['custom_fields']:
                custom_field['text_value'] = "New Data!"
            print client.tasks.update(task['id'], {'data':task})

但是当我运行代码时,任务不会更新。 print client.tasks.update的返回返回任务的所有细节,但自定义字段尚未更新。

2 个答案:

答案 0 :(得分:1)

我认为问题在于我们的API在自定义字段方面并不对称......我觉得这样做比较糟糕;在这样的情况下,它可能是一个真正的陷阱。如上所述,您可以直观地在值块中设置自定义字段的值,而不必使用键设置它们:custom_field_id:new_value的值字典设置 - 不幸的是,不那么直观。所以上面,你有

for custom_field in task['custom_fields']:
  custom_field['text_value'] = "New Data!"

我认为你必须做这样的事情:

new_custom_fields = {}
for custom_field in task['custom_fields']:
  new_custom_fields[custom_field['id']] = "New Data!"
task['custom_fields'] = new_custom_fields

目标是为看起来像

的POST请求生成JSON
{
  "data": {
    "custom_fields":{
      "12345678":"New Data!"
    }
  }
}

进一步说明,如果您有文字自定义字段,则该值应为新文本字符串;如果是数字自定义字段,则该值应为数字;以及enum_options选项的ID(采取如果它是枚举自定义字段,请查看我们文档网站上this header下的第三个示例)。

答案 1 :(得分:0)

感谢Matt,我得到了解决方案。

new_custom_fields = {}
for custom_field in task['custom_fields']:
  new_custom_fields[custom_field['id']] = "New Data!"

print client.tasks.update(task['id'], {'custom_fields':new_custom_fields})

我的原始代码中存在两个问题,第一个是我试图对称地处理API,这是由Matt识别和解决的。第二个是我试图以不正确的格式更新。请注意我的原始代码和更新代码中client.tasks.update之间的区别。