Google Cloud Rest API C#










0















I am having troubles with Google Cloud API.
I was successfully logged in and created a new key with the API, but the problem is to connect with the new key because the JSON file that was created in the first time by Google (in the UI) is different from the JSON that came from the API.
I cannot log-in with the new key, Google is throwing an error.



My code:



 private static void ServiceAccounts(string credentialsJson)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

//DeleteKeyOfServiceAccount(newKey);

LoginWithServiceAccountKey(newKey, credentialsJson);


public static void LoginAsServiceAccountWithJson(string credentialsJson)

//Create credentials from the JSON file that we receive from GCP.
GoogleCredential credential = GoogleCredential.FromJson(credentialsJson)
.CreateScoped(IamService.Scope.CloudPlatform);

// Create the Cloud IAM service object
s_service = new IamService(new IamService.Initializer

HttpClientInitializer = credential
);

ListRolesResponse response = s_service.Roles.List().Execute();


public static ServiceAccountKey CreateKeyOfServiceAccount(string userEmail)

var newKeyDetails = s_service.Projects.ServiceAccounts.Keys.Create(
new CreateServiceAccountKeyRequest(), "projects/-/serviceAccounts/" + userEmail);

ServiceAccountKey key = newKeyDetails.Execute();
return key;


public static IList<ServiceAccountKey> ListKeysOfServiceAccount(string userEmail)


IList<ServiceAccountKey> keys = s_service.Projects.ServiceAccounts.Keys
.List($"projects/-/serviceAccounts/userEmail").Execute().Keys;

return keys;



The code is working, except the function "LoginWithServiceAccountKey" ,I cannot use the Key that I just received from Google in order to login.
The JSON is different, even the key is a lot bigger in the API (i saw that in the key from the UI the size is 1735 chars and from the API is 3000+).
P.S - I know that I should wait 60 seconds before trying to connect, it's not the problem.










share|improve this question
























  • I'm investigating...

    – Jeffrey Rennie
    Nov 14 '18 at 17:10











  • What does the LoginWithServiceAccountKey() function look like? I got the rest of the code compiling and running: github.com/SurferJeffAtGoogle/scratch/blob/master/…

    – Jeffrey Rennie
    Nov 14 '18 at 19:36











  • Thats exactly the problem... I tried in several ways to login with the new key through the API unsuccessfully.

    – Omer Drory
    Nov 18 '18 at 14:42















0















I am having troubles with Google Cloud API.
I was successfully logged in and created a new key with the API, but the problem is to connect with the new key because the JSON file that was created in the first time by Google (in the UI) is different from the JSON that came from the API.
I cannot log-in with the new key, Google is throwing an error.



My code:



 private static void ServiceAccounts(string credentialsJson)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

//DeleteKeyOfServiceAccount(newKey);

LoginWithServiceAccountKey(newKey, credentialsJson);


public static void LoginAsServiceAccountWithJson(string credentialsJson)

//Create credentials from the JSON file that we receive from GCP.
GoogleCredential credential = GoogleCredential.FromJson(credentialsJson)
.CreateScoped(IamService.Scope.CloudPlatform);

// Create the Cloud IAM service object
s_service = new IamService(new IamService.Initializer

HttpClientInitializer = credential
);

ListRolesResponse response = s_service.Roles.List().Execute();


public static ServiceAccountKey CreateKeyOfServiceAccount(string userEmail)

var newKeyDetails = s_service.Projects.ServiceAccounts.Keys.Create(
new CreateServiceAccountKeyRequest(), "projects/-/serviceAccounts/" + userEmail);

ServiceAccountKey key = newKeyDetails.Execute();
return key;


public static IList<ServiceAccountKey> ListKeysOfServiceAccount(string userEmail)


IList<ServiceAccountKey> keys = s_service.Projects.ServiceAccounts.Keys
.List($"projects/-/serviceAccounts/userEmail").Execute().Keys;

return keys;



The code is working, except the function "LoginWithServiceAccountKey" ,I cannot use the Key that I just received from Google in order to login.
The JSON is different, even the key is a lot bigger in the API (i saw that in the key from the UI the size is 1735 chars and from the API is 3000+).
P.S - I know that I should wait 60 seconds before trying to connect, it's not the problem.










share|improve this question
























  • I'm investigating...

    – Jeffrey Rennie
    Nov 14 '18 at 17:10











  • What does the LoginWithServiceAccountKey() function look like? I got the rest of the code compiling and running: github.com/SurferJeffAtGoogle/scratch/blob/master/…

    – Jeffrey Rennie
    Nov 14 '18 at 19:36











  • Thats exactly the problem... I tried in several ways to login with the new key through the API unsuccessfully.

    – Omer Drory
    Nov 18 '18 at 14:42













0












0








0








I am having troubles with Google Cloud API.
I was successfully logged in and created a new key with the API, but the problem is to connect with the new key because the JSON file that was created in the first time by Google (in the UI) is different from the JSON that came from the API.
I cannot log-in with the new key, Google is throwing an error.



My code:



 private static void ServiceAccounts(string credentialsJson)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

//DeleteKeyOfServiceAccount(newKey);

LoginWithServiceAccountKey(newKey, credentialsJson);


public static void LoginAsServiceAccountWithJson(string credentialsJson)

//Create credentials from the JSON file that we receive from GCP.
GoogleCredential credential = GoogleCredential.FromJson(credentialsJson)
.CreateScoped(IamService.Scope.CloudPlatform);

// Create the Cloud IAM service object
s_service = new IamService(new IamService.Initializer

HttpClientInitializer = credential
);

ListRolesResponse response = s_service.Roles.List().Execute();


public static ServiceAccountKey CreateKeyOfServiceAccount(string userEmail)

var newKeyDetails = s_service.Projects.ServiceAccounts.Keys.Create(
new CreateServiceAccountKeyRequest(), "projects/-/serviceAccounts/" + userEmail);

ServiceAccountKey key = newKeyDetails.Execute();
return key;


public static IList<ServiceAccountKey> ListKeysOfServiceAccount(string userEmail)


IList<ServiceAccountKey> keys = s_service.Projects.ServiceAccounts.Keys
.List($"projects/-/serviceAccounts/userEmail").Execute().Keys;

return keys;



The code is working, except the function "LoginWithServiceAccountKey" ,I cannot use the Key that I just received from Google in order to login.
The JSON is different, even the key is a lot bigger in the API (i saw that in the key from the UI the size is 1735 chars and from the API is 3000+).
P.S - I know that I should wait 60 seconds before trying to connect, it's not the problem.










share|improve this question
















I am having troubles with Google Cloud API.
I was successfully logged in and created a new key with the API, but the problem is to connect with the new key because the JSON file that was created in the first time by Google (in the UI) is different from the JSON that came from the API.
I cannot log-in with the new key, Google is throwing an error.



My code:



 private static void ServiceAccounts(string credentialsJson)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

//DeleteKeyOfServiceAccount(newKey);

LoginWithServiceAccountKey(newKey, credentialsJson);


public static void LoginAsServiceAccountWithJson(string credentialsJson)

//Create credentials from the JSON file that we receive from GCP.
GoogleCredential credential = GoogleCredential.FromJson(credentialsJson)
.CreateScoped(IamService.Scope.CloudPlatform);

// Create the Cloud IAM service object
s_service = new IamService(new IamService.Initializer

HttpClientInitializer = credential
);

ListRolesResponse response = s_service.Roles.List().Execute();


public static ServiceAccountKey CreateKeyOfServiceAccount(string userEmail)

var newKeyDetails = s_service.Projects.ServiceAccounts.Keys.Create(
new CreateServiceAccountKeyRequest(), "projects/-/serviceAccounts/" + userEmail);

ServiceAccountKey key = newKeyDetails.Execute();
return key;


public static IList<ServiceAccountKey> ListKeysOfServiceAccount(string userEmail)


IList<ServiceAccountKey> keys = s_service.Projects.ServiceAccounts.Keys
.List($"projects/-/serviceAccounts/userEmail").Execute().Keys;

return keys;



The code is working, except the function "LoginWithServiceAccountKey" ,I cannot use the Key that I just received from Google in order to login.
The JSON is different, even the key is a lot bigger in the API (i saw that in the key from the UI the size is 1735 chars and from the API is 3000+).
P.S - I know that I should wait 60 seconds before trying to connect, it's not the problem.







c# google-api google-cloud-platform






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 8 at 13:08









Andrei Cusnir

4161310




4161310










asked Nov 11 '18 at 17:30









Omer DroryOmer Drory

31




31












  • I'm investigating...

    – Jeffrey Rennie
    Nov 14 '18 at 17:10











  • What does the LoginWithServiceAccountKey() function look like? I got the rest of the code compiling and running: github.com/SurferJeffAtGoogle/scratch/blob/master/…

    – Jeffrey Rennie
    Nov 14 '18 at 19:36











  • Thats exactly the problem... I tried in several ways to login with the new key through the API unsuccessfully.

    – Omer Drory
    Nov 18 '18 at 14:42

















  • I'm investigating...

    – Jeffrey Rennie
    Nov 14 '18 at 17:10











  • What does the LoginWithServiceAccountKey() function look like? I got the rest of the code compiling and running: github.com/SurferJeffAtGoogle/scratch/blob/master/…

    – Jeffrey Rennie
    Nov 14 '18 at 19:36











  • Thats exactly the problem... I tried in several ways to login with the new key through the API unsuccessfully.

    – Omer Drory
    Nov 18 '18 at 14:42
















I'm investigating...

– Jeffrey Rennie
Nov 14 '18 at 17:10





I'm investigating...

– Jeffrey Rennie
Nov 14 '18 at 17:10













What does the LoginWithServiceAccountKey() function look like? I got the rest of the code compiling and running: github.com/SurferJeffAtGoogle/scratch/blob/master/…

– Jeffrey Rennie
Nov 14 '18 at 19:36





What does the LoginWithServiceAccountKey() function look like? I got the rest of the code compiling and running: github.com/SurferJeffAtGoogle/scratch/blob/master/…

– Jeffrey Rennie
Nov 14 '18 at 19:36













Thats exactly the problem... I tried in several ways to login with the new key through the API unsuccessfully.

– Omer Drory
Nov 18 '18 at 14:42





Thats exactly the problem... I tried in several ways to login with the new key through the API unsuccessfully.

– Omer Drory
Nov 18 '18 at 14:42












1 Answer
1






active

oldest

votes


















0














It took me some time to figure out how the APIs fit together. Here's a version of your ServiceAccounts() function that calls the Google Translate API with the new key:



 private static void ServiceAccounts(string credentialsJson, string userEmail)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

// Call the translate API with the new key.
byte jsonKey = Convert.FromBase64String(newKey.PrivateKeyData);
Stream jsonKeyStream = new MemoryStream(jsonKey);
ServiceAccountCredential credential = ServiceAccountCredential
.FromServiceAccountData(jsonKeyStream);
GoogleCredential googleCredential = GoogleCredential
.FromServiceAccountCredential(credential);
var client = TranslationClient.Create(googleCredential);
var response = client.TranslateText("Hello World", "ru");
Console.WriteLine(response.TranslatedText);

//DeleteKeyOfServiceAccount(newKey);

// LoginWithServiceAccountKey(newKey, credentialsJson);



Full code is here:
https://github.com/SurferJeffAtGoogle/scratch/blob/master/StackOverflow53251345/Program.cs






share|improve this answer

























  • Working! Thanks a lot!

    – Omer Drory
    Nov 21 '18 at 5:25










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%2f53251345%2fgoogle-cloud-rest-api-c-sharp%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














It took me some time to figure out how the APIs fit together. Here's a version of your ServiceAccounts() function that calls the Google Translate API with the new key:



 private static void ServiceAccounts(string credentialsJson, string userEmail)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

// Call the translate API with the new key.
byte jsonKey = Convert.FromBase64String(newKey.PrivateKeyData);
Stream jsonKeyStream = new MemoryStream(jsonKey);
ServiceAccountCredential credential = ServiceAccountCredential
.FromServiceAccountData(jsonKeyStream);
GoogleCredential googleCredential = GoogleCredential
.FromServiceAccountCredential(credential);
var client = TranslationClient.Create(googleCredential);
var response = client.TranslateText("Hello World", "ru");
Console.WriteLine(response.TranslatedText);

//DeleteKeyOfServiceAccount(newKey);

// LoginWithServiceAccountKey(newKey, credentialsJson);



Full code is here:
https://github.com/SurferJeffAtGoogle/scratch/blob/master/StackOverflow53251345/Program.cs






share|improve this answer

























  • Working! Thanks a lot!

    – Omer Drory
    Nov 21 '18 at 5:25















0














It took me some time to figure out how the APIs fit together. Here's a version of your ServiceAccounts() function that calls the Google Translate API with the new key:



 private static void ServiceAccounts(string credentialsJson, string userEmail)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

// Call the translate API with the new key.
byte jsonKey = Convert.FromBase64String(newKey.PrivateKeyData);
Stream jsonKeyStream = new MemoryStream(jsonKey);
ServiceAccountCredential credential = ServiceAccountCredential
.FromServiceAccountData(jsonKeyStream);
GoogleCredential googleCredential = GoogleCredential
.FromServiceAccountCredential(credential);
var client = TranslationClient.Create(googleCredential);
var response = client.TranslateText("Hello World", "ru");
Console.WriteLine(response.TranslatedText);

//DeleteKeyOfServiceAccount(newKey);

// LoginWithServiceAccountKey(newKey, credentialsJson);



Full code is here:
https://github.com/SurferJeffAtGoogle/scratch/blob/master/StackOverflow53251345/Program.cs






share|improve this answer

























  • Working! Thanks a lot!

    – Omer Drory
    Nov 21 '18 at 5:25













0












0








0







It took me some time to figure out how the APIs fit together. Here's a version of your ServiceAccounts() function that calls the Google Translate API with the new key:



 private static void ServiceAccounts(string credentialsJson, string userEmail)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

// Call the translate API with the new key.
byte jsonKey = Convert.FromBase64String(newKey.PrivateKeyData);
Stream jsonKeyStream = new MemoryStream(jsonKey);
ServiceAccountCredential credential = ServiceAccountCredential
.FromServiceAccountData(jsonKeyStream);
GoogleCredential googleCredential = GoogleCredential
.FromServiceAccountCredential(credential);
var client = TranslationClient.Create(googleCredential);
var response = client.TranslateText("Hello World", "ru");
Console.WriteLine(response.TranslatedText);

//DeleteKeyOfServiceAccount(newKey);

// LoginWithServiceAccountKey(newKey, credentialsJson);



Full code is here:
https://github.com/SurferJeffAtGoogle/scratch/blob/master/StackOverflow53251345/Program.cs






share|improve this answer















It took me some time to figure out how the APIs fit together. Here's a version of your ServiceAccounts() function that calls the Google Translate API with the new key:



 private static void ServiceAccounts(string credentialsJson, string userEmail)

LoginAsServiceAccountWithJson(credentialsJson);

IList<ServiceAccountKey> serviceAccountKeys = ListKeysOfServiceAccount(userEmail);

ServiceAccountKey newKey = CreateKeyOfServiceAccount(userEmail);

// Call the translate API with the new key.
byte jsonKey = Convert.FromBase64String(newKey.PrivateKeyData);
Stream jsonKeyStream = new MemoryStream(jsonKey);
ServiceAccountCredential credential = ServiceAccountCredential
.FromServiceAccountData(jsonKeyStream);
GoogleCredential googleCredential = GoogleCredential
.FromServiceAccountCredential(credential);
var client = TranslationClient.Create(googleCredential);
var response = client.TranslateText("Hello World", "ru");
Console.WriteLine(response.TranslatedText);

//DeleteKeyOfServiceAccount(newKey);

// LoginWithServiceAccountKey(newKey, credentialsJson);



Full code is here:
https://github.com/SurferJeffAtGoogle/scratch/blob/master/StackOverflow53251345/Program.cs







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 19 '18 at 21:07

























answered Nov 19 '18 at 18:03









Jeffrey RennieJeffrey Rennie

1,7481712




1,7481712












  • Working! Thanks a lot!

    – Omer Drory
    Nov 21 '18 at 5:25

















  • Working! Thanks a lot!

    – Omer Drory
    Nov 21 '18 at 5:25
















Working! Thanks a lot!

– Omer Drory
Nov 21 '18 at 5:25





Working! Thanks a lot!

– Omer Drory
Nov 21 '18 at 5:25

















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%2f53251345%2fgoogle-cloud-rest-api-c-sharp%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

𛂒𛀶,𛀽𛀑𛂀𛃧𛂓𛀙𛃆𛃑𛃷𛂟𛁡𛀢𛀟𛁤𛂽𛁕𛁪𛂟𛂯,𛁞𛂧𛀴𛁄𛁠𛁼𛂿𛀤 𛂘,𛁺𛂾𛃭𛃭𛃵𛀺,𛂣𛃍𛂖𛃶 𛀸𛃀𛂖𛁶𛁏𛁚 𛂢𛂞 𛁰𛂆𛀔,𛁸𛀽𛁓𛃋𛂇𛃧𛀧𛃣𛂐𛃇,𛂂𛃻𛃲𛁬𛃞𛀧𛃃𛀅 𛂭𛁠𛁡𛃇𛀷𛃓𛁥,𛁙𛁘𛁞𛃸𛁸𛃣𛁜,𛂛,𛃿,𛁯𛂘𛂌𛃛𛁱𛃌𛂈𛂇 𛁊𛃲,𛀕𛃴𛀜 𛀶𛂆𛀶𛃟𛂉𛀣,𛂐𛁞𛁾 𛁷𛂑𛁳𛂯𛀬𛃅,𛃶𛁼

Edmonton

Crossroads (UK TV series)