您如何使用 gitlab API 获取对用户片段的评论?

How do you get the comments on a user's snippets using the gitlab API?

documentation for the gitlab api 中,它告诉您如何通过执行以下操作获取特定项目中片段的注释:

GET /projects/:id/snippets/:snippet_id/notes

但是,这不适用于用户创建的不属于特定项目的片段(即 /dashboard/snippets 中的片段)。

有没有一种方法也可以使用 gitlab api 获取对这些片段的评论?我也无法在片段 API 文档中找到任何内容。

它没有记录在案,但您只需更改端点即可在没有项目的情况下访问代码片段: 尝试 /snippets/:snippet_id/notes 而不是 GET /projects/:id/snippets/:snippet_id/notes。与片段交互的其他一切似乎都一样,只是端点发生了变化。