I am trying to verify I have the private_key
correct as described in this SO question.
Docs about service account private keys are here.
{
"type": "service_account",
"project_id": "[PROJECT-ID]",
"private_key_id": "[KEY-ID]",
"private_key": "-----BEGIN PRIVATE KEY-----\n[PRIVATE-KEY]\n-----END PRIVATE KEY-----\n",
"client_email": "[SERVICE-ACCOUNT-EMAIL]",
"client_id": "[CLIENT-ID]",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://accounts.google.com/o/oauth2/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/x509/[SERVICE-ACCOUNT-EMAIL]"
}
When using private_key
, do I just get the part in between the
-----BEGIN PRIVATE KEY-----\n
string and the
\n-----END PRIVATE KEY-----\n
In other words, the [PRIVATE-KEY]
shown in the example?
Or do I get the entire string including the two "bookend" strings shown above?
Also, within the [PRIVATE-KEY]
string, there are several occurrences of the \n
substring. Do I remove them or leave them in?