Skip to content
Advertisement

Error When trying to push ssh keys into github from bash script

I am working on a script that creates ssh keys and puts them into github using bash. I am running into this error when running this function.. I want a way to generate ssh keys and put them into github from terminal within my script.

JavaScript

Error: { “message”: “Bad credentials”, “documentation_url”: “https://developer.github.com/v3” }

Advertisement

Answer

You are putting too many quotes in the command. The correct code (to a first approximation) would be

JavaScript

However this is prone to failure if either TITLE or KEY contains a character that needs to be escaped to include in JSON. The right way to do this is to generate the JSON with a tool like jq, which takes care of any necessary escaping.

JavaScript

or

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement