我可以使用以下方式获取我的公司 ID 和团队 ID:
companies.Api(client).get_list()
=> 这将返回公司 ID
companies.Api(client).get_specific('COMPANY_ID')
=> 这将返回团队和团队 ID 的列表。公司 ID 必须正确,因为 API 正确返回了我们公司的团队。
但是,当我运行时:
time.Gds(client).get_by_team_full(company_id,team_id,params)
我得到:
{'errors': [{'message': 'Not Found: No entity found for parameters : COMPANY_ID', 'reason': 'other'}], 'status': 'error', 'version': '0.6'}
文档说要使用time.Api(client)
,但是当我尝试时,我得到:
AttributeError:模块“upwork.routers.reports.time”没有属性“Api”