Youtrack REST API "Failed to create service account from Hub, giving up" 错误

Youtrack REST API "Failed to create service account from Hub, giving up" error

在集线器中授权后,我正在尝试从 REST Api 接收数据。这是我的操作:

1.Authenticate Hub 中使用客户端凭据流的应用程序(顺便说一下,聊天机器人的流选择是否正确?)

POST /api/rest/oauth2/token HTTP/1.1
Host: hub.example.com
Authorization: Basic base64(service_id + “:” + service_secret)
Content-Type: application/x-www-form-urlencoded

grant_type=client_credentials&scope=YOUTRACK_SERVICE_ID

2.Then 我正在尝试使用收到的访问令牌从 YouTrack 获取问题

GET /rest/issue HTTP/1.1
Host: yt.example.com
Authorization: Bearer ACCESS_TOKEN
Accept: application/json

此消息的响应状态为 500 {"value": "Failed to create service account from Hub, giving up"}

Hub 和 YouTrack 都是独立的。

这是怎么回事,我该怎么办?谢谢

将 YouTrack 更新为新版本修复了问题。
感谢 Jk1 上面的评论。