我在敏捷中心(集会)有 3 个工作空间。我想从这 3 个工作空间中提取 2 个工作空间中的所有项目。
我正在使用 pyral python 包。
下面是代码片段:
from pyral import Rally
return Rally(server='rally1.rallydev.com', apikey=decoded_key, workspace=['Test-WORKSPACE-1', 'Test-Workspace-2'], projectScopeDown=False,verify_ssl_cert=False)
上面的代码抛出错误。
pyral.context.RallyRESTAPIError: Multiple workspaces (3) found with the same name of '['Test-WORKSPACE-1', 'Test-Workspace-2']'. You must specify a workspace with a unique name.
我的系统帐户对所有 3 个工作空间以及这 3 个工作空间内的所有项目都具有读取权限。 查询拉力赛 API 时可以指定多个工作区吗?我在这里做错什么了吗。非常感谢您提前在这里提供的所有帮助。