Google cloud Rest API C#
up vote
0
down vote
favorite
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, its not the problem.
c# google-api google-cloud-platform
add a comment |
up vote
0
down vote
favorite
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, its not the problem.
c# google-api google-cloud-platform
I'm investigating...
– Jeffrey Rennie
Nov 14 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 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 at 14:42
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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, its 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, its not the problem.
c# google-api google-cloud-platform
c# google-api google-cloud-platform
asked Nov 11 at 17:30
Omer Drory
31
31
I'm investigating...
– Jeffrey Rennie
Nov 14 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 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 at 14:42
add a comment |
I'm investigating...
– Jeffrey Rennie
Nov 14 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 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 at 14:42
I'm investigating...
– Jeffrey Rennie
Nov 14 at 17:10
I'm investigating...
– Jeffrey Rennie
Nov 14 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 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 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 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 at 14:42
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
accepted
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 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',
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
up vote
0
down vote
accepted
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 at 5:25
add a comment |
up vote
0
down vote
accepted
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 at 5:25
add a comment |
up vote
0
down vote
accepted
up vote
0
down vote
accepted
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 at 21:07
answered Nov 19 at 18:03
Jeffrey Rennie
1,6561612
1,6561612
Working! Thanks a lot!
– Omer Drory
Nov 21 at 5:25
add a comment |
Working! Thanks a lot!
– Omer Drory
Nov 21 at 5:25
Working! Thanks a lot!
– Omer Drory
Nov 21 at 5:25
Working! Thanks a lot!
– Omer Drory
Nov 21 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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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 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 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 at 14:42