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













1















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









share|improve this question
























  • See here: github.com/google/oauth2l

    – DazWilkin
    Mar 22 at 0:44















1















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









share|improve this question
























  • See here: github.com/google/oauth2l

    – DazWilkin
    Mar 22 at 0:44













1












1








1








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









share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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

















  • 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












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
);



);













draft saved

draft discarded


















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















draft saved

draft discarded
















































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.




draft saved


draft discarded














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





















































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







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript