Google Cloud authentication with JSON keyfile using cURLHow to send a header using a HTTP request through a curl call?How do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?curl php cannot get access token from google. Curl returns nothingauthorization google drive curl (language c)Google OAuth token exchange returns invalid_codegsutil OAuth2 authorization (example of .boto file is needed)Gmail API's Java integration issueNon-interactive access to google cloud storageGoogle compute engine gcloud compute copy-files: could not fetch instanceGoogle Cloud Compute Engine API Key To Manage VMs
Could solar power be utilized and substitute coal in the 19th century?
Can a Bard use an arcane focus?
Greatest common substring
What is Sitecore Managed Cloud?
Can I use my Chinese passport to enter China after I acquired another citizenship?
Is there enough fresh water in the world to eradicate the drinking water crisis?
Superhero words!
Pronouncing Homer as in modern Greek
Can a Gentile theist be saved?
Can the harmonic series explain the origin of the major scale?
Invariance of results when scaling explanatory variables in logistic regression, is there a proof?
Hostile work environment after whistle-blowing on coworker and our boss. What do I do?
Why are all the doors on Ferenginar (the Ferengi home world) far shorter than the average Ferengi?
Stereotypical names
Partial sums of primes
Simple recursive Sudoku solver
Latex for-and in equation
word describing multiple paths to the same abstract outcome
Blender - show edges angles “direction”
Is the next prime number always the next number divisible by the current prime number, except for any numbers previously divisible by primes?
Perfect riffle shuffles
What will be the benefits of Brexit?
I'm in charge of equipment buying but no one's ever happy with what I choose. How to fix this?
What was required to accept "troll"?
Google Cloud authentication with JSON keyfile using cURL
How to send a header using a HTTP request through a curl call?How do I POST JSON data with Curl from a terminal/commandline to Test Spring REST?curl php cannot get access token from google. Curl returns nothingauthorization google drive curl (language c)Google OAuth token exchange returns invalid_codegsutil OAuth2 authorization (example of .boto file is needed)Gmail API's Java integration issueNon-interactive access to google cloud storageGoogle compute engine gcloud compute copy-files: could not fetch instanceGoogle Cloud Compute Engine API Key To Manage VMs
I have a JSON key file for Google Cloud in the form of:
"type": "service_account",
"project_id": "###",
"private_key_id": "###",
"private_key": "-----BEGIN PRIVATE KEY-----n
########################################
n-----END PRIVATE KEY-----n",
"client_email": "###@###.gserviceaccount.com",
"client_id": "###",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/###.gserviceaccount.com"
I would like to get an access_token
while using regular curl commands instead of the GCP Console or installing the gcloud tool.
I would expect something like:
curl
--request POST
--data-binary "@path/to/key.json"
https://accounts.google.com/o/oauth2/token
curl oauth google-cloud-platform google-oauth gcloud
add a comment |
I have a JSON key file for Google Cloud in the form of:
"type": "service_account",
"project_id": "###",
"private_key_id": "###",
"private_key": "-----BEGIN PRIVATE KEY-----n
########################################
n-----END PRIVATE KEY-----n",
"client_email": "###@###.gserviceaccount.com",
"client_id": "###",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/###.gserviceaccount.com"
I would like to get an access_token
while using regular curl commands instead of the GCP Console or installing the gcloud tool.
I would expect something like:
curl
--request POST
--data-binary "@path/to/key.json"
https://accounts.google.com/o/oauth2/token
curl oauth google-cloud-platform google-oauth gcloud
See here: github.com/google/oauth2l
– DazWilkin
Mar 22 at 0:44
add a comment |
I have a JSON key file for Google Cloud in the form of:
"type": "service_account",
"project_id": "###",
"private_key_id": "###",
"private_key": "-----BEGIN PRIVATE KEY-----n
########################################
n-----END PRIVATE KEY-----n",
"client_email": "###@###.gserviceaccount.com",
"client_id": "###",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/###.gserviceaccount.com"
I would like to get an access_token
while using regular curl commands instead of the GCP Console or installing the gcloud tool.
I would expect something like:
curl
--request POST
--data-binary "@path/to/key.json"
https://accounts.google.com/o/oauth2/token
curl oauth google-cloud-platform google-oauth gcloud
I have a JSON key file for Google Cloud in the form of:
"type": "service_account",
"project_id": "###",
"private_key_id": "###",
"private_key": "-----BEGIN PRIVATE KEY-----n
########################################
n-----END PRIVATE KEY-----n",
"client_email": "###@###.gserviceaccount.com",
"client_id": "###",
"auth_uri": "https://accounts.google.com/o/oauth2/auth",
"token_uri": "https://oauth2.googleapis.com/token",
"auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
"client_x509_cert_url": "https://www.googleapis.com/robot/v1/metadata/###.gserviceaccount.com"
I would like to get an access_token
while using regular curl commands instead of the GCP Console or installing the gcloud tool.
I would expect something like:
curl
--request POST
--data-binary "@path/to/key.json"
https://accounts.google.com/o/oauth2/token
curl oauth google-cloud-platform google-oauth gcloud
curl oauth google-cloud-platform google-oauth gcloud
edited 17 hours ago
Igor Dvorzhak
1,389920
1,389920
asked Mar 21 at 14:28
APIAPI
873728
873728
See here: github.com/google/oauth2l
– DazWilkin
Mar 22 at 0:44
add a comment |
See here: github.com/google/oauth2l
– DazWilkin
Mar 22 at 0:44
See here: github.com/google/oauth2l
– DazWilkin
Mar 22 at 0:44
See here: github.com/google/oauth2l
– DazWilkin
Mar 22 at 0:44
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55282739%2fgoogle-cloud-authentication-with-json-keyfile-using-curl%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55282739%2fgoogle-cloud-authentication-with-json-keyfile-using-curl%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
See here: github.com/google/oauth2l
– DazWilkin
Mar 22 at 0:44