método de línea de comandos o agregue mediante programación la clave ssh a la cuenta de usuario de github.com


18

¿Hay alguna manera de identificarse con un nombre de usuario y contraseña para los servidores de github.com con el fin de agregar una clave ssh a la cuenta de usuario de github? Hasta ahora, todo lo que he leído sugiere que la clave ssh de un usuario debe agregarse a través de la GUI web. Estoy buscando el método o proceso de agregar una clave a través de una interfaz de línea de comando o de otra manera un script bash / ansible / something.


1
¿Qué tal usar alguna biblioteca para usar la API de GitHub ?
sr_

Respuestas:


15

La autenticación con nombre de usuario y contraseña es compatible con github api :

Hay tres formas de autenticarse a través de GitHub API v3. ...
Autenticación básica
$ curl -u "nombre de usuario" https://api.github.com
...

Así que simplemente elija una biblioteca en el idioma que prefiera y use la versión implementada de la sección API Crear una clave pública "clave pública":

Crea una clave pública. Requiere que esté autenticado a través de la autenticación básica u OAuth con al menos el alcance [write: public_key].

ENTRADA
POST /user/keys

{
    "title": "octocat@octomac",
    "key": "ssh-rsa AAA..."
}

Si desea usarlo desde la línea de comandos (a través de curl):

curl -u "username" --data '{"title":"test-key","key":"ssh-rsa AAA..."}' https://api.github.com/user/keys

o incluso sin solicitar contraseña:

curl -u "username:password" --data '{"title":"test-key","key":"ssh-rsa AAA..."}' https://api.github.com/user/keys

Aquí hay un pequeño tutorial para usar curl para interactuar con github API


¡Este es exactamente el tipo de información que estaba buscando! ¡Muchas gracias!
cmosetick

7

Similar a la respuesta de xx4h, así es como lo hago en scripts para automatizar nuevas configuraciones de VM.

ssh-keygen -t rsa -b 4096 -C "myemailaddress@hotmail.com"
curl -u "myusername" \
    --data "{\"title\":\"DevVm_`date +%Y%m%d%H%M%S`\",\"key\":\"`cat ~/.ssh/id_rsa.pub`\"}" \
    https://api.github.com/user/keys

Le da una nueva clave SSH, la incluye en la llamada curl y le da un nombre único pero aún fácilmente identificable para cada uno en el lado de GitHub (por ejemplo, ejecutar ahora daría DevVm_150602142247).


1
#!/bin/bash

set -xe
myemail="your-email"

#your personal access token
git_api_token="befdf14c152d6f2ad8cff9c5affffffffffffffffff"

#We'll use the HTTPS to push a ssh key to git, SSH for pull/push configuration
gitrepo_ssh="git@github.com:person/repo.git"
gitrepo_https="https://github.com/person/repo.git"

#Generating SSH key:
ssh-keygen -f "${HOME}/.ssh/id_rsa" -t rsa -b 4096 -C "${myemail}" -N ''
sslpub="$(cat ${HOME}/.ssh/id_rsa.pub |tail -1)"

#git API path for posting a new ssh-key:
git_api_addkey="https://api.$(echo ${gitrepo_https} |cut -d'/' -f3)/user/keys"

#lets name the ssh-key in get after the hostname with a timestamp:
git_ssl_keyname="$(hostname)_$(date +%d-%m-%Y)"

#Finally lets post this ssh key:
curl -H "Authorization: token ${git_api_token}" -H "Content-Type: application/json" -X POST -d "{\"title\":\"${git_ssl_keyname}\",\"key\":\"${sslpub}\"}" ${git_api_addkey}

0

Otra opción es usar un token API ... Yo uso lo siguiente en nuestro servidor interno de gitLab

retazo:

#!/bin/bash

myemail="first.last@domain.com"

# User API token can be found: "https://git.labs.domain.com/profile/account"
git_api_token="m3iP27Jh8KSgNmWAksYp"

# We'll use the HTTPS to push a ssh key to git, SSH for pull/push configuration
gitrepo_ssh="git@git.labs.domain.com:devops/automation.git"
gitrepo_https="https://git.labs.domain.com/devops/automation.git"

########################]  D O   N O T   C H A N G E  [########################

# Generating SSH key:
ssh-keygen -f "${HOME}/.ssh/id_rsa" -t rsa -b 4096 -C "${myemail}" -N ''
sslpub="$(cat ${HOME}/.ssh/id_rsa.pub |tail -1)"

# git API path for posting a new ssh-key:
git_api_addkey="https://$(echo ${gitrepo_https} |cut -d'/' -f3)/api/v3/user/keys"

# lets name the ssh-key in get after the hostname with a timestamp:
git_ssl_keyname="$(hostname)-$(date +%Y%m%d%H%M%S)"

# Finally lets post this ssh key:
curl -H "PRIVATE-TOKEN: ${git_api_token}" -H "Content-Type: application/json" \
    -X POST -d "{\"title\":\"${git_ssl_keyname}\",\"key\":\"${sslpub}\"}"     \
    ${git_api_addkey}
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.