我正在使用 Python 插件 pyral。
我像这样连接到 Rally:
r = pyral.Rally(apikey="<My ID>", project="<My top level project>")
然后我搜索这样的拉力赛故事:
resp = r.get("UserStory", fetch=True, query='FormattedID = "{}"'.format(ID))
其中 ID 是 Rally 票号,类似于 AB12345。
这曾经有效,但现在它返回零结果。为什么?