Google Cloud Rest API C#
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
add a comment |
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
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
add a comment |
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
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
c# google-api google-cloud-platform
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
add a comment |
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
add a comment |
1 Answer
1
active
oldest
votes
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
Working! Thanks a lot!
– Omer Drory
Nov 21 '18 at 5:25
add a comment |
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%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
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
Working! Thanks a lot!
– Omer Drory
Nov 21 '18 at 5:25
add a comment |
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
Working! Thanks a lot!
– Omer Drory
Nov 21 '18 at 5:25
add a comment |
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
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
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
add a comment |
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
add a comment |
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%2f53251345%2fgoogle-cloud-rest-api-c-sharp%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
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