AtTask getApiKey 操作 returns 不支持的操作错误
AtTask getApiKey action returns unsupported action error
我正在按照 AtTask API 文档中的 directions 获取 API 密钥。我的用户是系统管理员,但是请求总是returns出错。
要求:
GET /attask/api/v4.0/user?action=getApiKey&username=user@company.com&password=********&method=put
回复:
{
"error": {
"class": "java.lang.UnsupportedOperationException",
"message": "APIModel V4_0 does not support action getApiKey (USER)"
}
}
似乎现在 api 键仅在 api 的最新(不稳定)版本中受支持。尝试传递 unsupported
或 internal
而不是 v4.0
。
这样您将获得 api.
的最新功能
以下应该有效
GET /attask/api-unsupported/user?action=getApiKey&username=user@company.com&password=********&method=put
我正在按照 AtTask API 文档中的 directions 获取 API 密钥。我的用户是系统管理员,但是请求总是returns出错。
要求:
GET /attask/api/v4.0/user?action=getApiKey&username=user@company.com&password=********&method=put
回复:
{
"error": {
"class": "java.lang.UnsupportedOperationException",
"message": "APIModel V4_0 does not support action getApiKey (USER)"
}
}
似乎现在 api 键仅在 api 的最新(不稳定)版本中受支持。尝试传递 unsupported
或 internal
而不是 v4.0
。
这样您将获得 api.
以下应该有效
GET /attask/api-unsupported/user?action=getApiKey&username=user@company.com&password=********&method=put