0
私は自分のAsanaリストからカスタムフィールドの値をプルダウンしようとしています。私はOfficial Python client library for the Asana API v1を使用しています。Pythonを使用してAsana APIからカスタムフィールドにアクセスするにはどうすればよいですか?
現在、自分のコードは次のようになっています。
import asana
api_key = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
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
tasks = client.tasks.find_by_project(project['id'], {"opt_fields":"this.name,this.custom_fields"}, iterator_type=None)
for task in tasks:
if "Example Task" in task['name']:
print "Matching task found."
print task['name'] + " - " + str(task['id'])
print task['custom_fields']
print
出力が表示されます。
Matching task found.
Example Task - 228660596773016
[None, None]
Matching task found.
Example Task 2 - 228660596773021
[None, None]
「数」の値は、カスタムフィールドの数と同じです。キー名と値を取得するにはどうすればよいですか?私の究極の目標は、価値を確認し、その価値をナセサリーとして更新することです。