How to get public ssh user keys from GitLab?

How to retrieve public ssh keys of a user from GitLab?

GitHub provides this feature. For example: https://github.com/winny-.keys

The GitLab API provides public keys , but it looks like it requires:

  • Separate Authentication
  • Request the given username for its UID
  • Finally, get the public keys
+6
source share
1 answer

GitLab 6.6.0 has added ssh gitHub style public key access .

Currently we are launching 6.2.3 and we are updating.

+6
source

Source: https://habr.com/ru/post/972496/


All Articles