Questions tagged [google-cloud-identity]
107 questions
3
votes
2 answers
Google Cloud Identity Platform (CICP) SAML Workflow Fails
Background
Using Firebase Auth and a SAML Auth Provider with the following configuration:
const config = {
apiKey: "AIzaSy...",
authDomain: "example-app.firebaseapp.com",
};
firebase.initializeApp(config);
const provider = new…

Tetsujin no Oni
- 7,300
- 2
- 29
- 46
3
votes
2 answers
sssd Error: Could not start TLS encryption. (unknown error code)
I am trying to configure Linux machine authentication with Google secure LDAP, adding the steps below that I have done
Added the LDAP client with below permission:
Access permission: Entire Domain
Read user information: Entire Domain
Read group…

Ashwani
- 485
- 2
- 9
- 23
2
votes
2 answers
How to disable the multi tenant feature for a GCP project?
I have enabled the multi-tenancy feature for my firebase project in the GCP console following this guide but now there's no way to disable it back.
Will this affect any of project's behaviour?

Neat Fastro
- 33
- 4
2
votes
2 answers
In a Google Cloud Identity account, Free edition, unable to activate storage in Google Drive
I've created recently a free Google Cloud Identity account (free edition) for my organization to manage all Google related services (Firebase, Google Cloud). We have emails hosted elsewhere so I'm not interested in Gmail. However, I would like to…

Manh Ha
- 1,617
- 2
- 14
- 18
2
votes
0 answers
"oauth2: cannot fetch token: 401 Unauthorized" happens sometime in Google Workspace Directory API
I created the code which get the member's information by Google Workspace Directory API. This code is executed everyday, and sometime I fece the error which is "oauth2: cannot fetch token: 401 Unauthorized".
Bad thing is that this error is happend…

y-kishi
- 21
- 2
2
votes
1 answer
How to call google cloud identity APIs from an application
I am trying to call google cloud [groups memberships apis][1] from my go based application. I looked at the documentation in go [document here][2] but I am not sure how to write a simple code to do that in go.
here is what I tried to…

learning
- 41
- 3
2
votes
0 answers
How to authenticate external tenant applications to access multi-tenant GCP Cloud Run application
Background:
We are developing a multi-tenant application in Google Cloud Platform (GCP). Identity Platform setup with multi-tenancy is working great for end-users which are authenticated by Google Cloud API Gateway, using firebase.
All requests to…

Ole Håkon Ødegaard
- 21
- 2
2
votes
2 answers
How to use REST API to logout a current user from the Google Cloud Identity Platform?
The documentation explains how to use REST API to perform common user operations, such as signing in users.
But it doesn't include, how to logout the current user. How it can be done?

stayfoolish
- 57
- 8
2
votes
0 answers
Google Cloud Identity: Groups as members of other groups do not inherit role grants
When testing the following scenario:
group-a@company.com
member: user@company.com
role-group-b@company.com
member: group-a@company.com
Project: foo-bar-af09
IAM Membership
Role: roles/browser
Member:…

Overbryd
- 4,612
- 2
- 33
- 33
2
votes
0 answers
Google cloud identity api to get company owned devices list
I am trying to get a company owned devices via https://cloud.google.com/identity/docs/reference/rest/v1/devices/list using golang.
I have tried using a service account and doing domain wide delegation and even adding scopes .
It seems that the…

DEVTEAM
- 21
- 2
2
votes
1 answer
MFA Firebase & React Flow
I am trying to enroll a user with Multifactor authentication with Firebase following this setup guide: https://cloud.google.com/identity-platform/docs/web/mfa
I am struggling to figure out how to have my function wait for the user inputted…

douglasrcjames
- 1,133
- 3
- 17
- 37
2
votes
1 answer
Can I use firestore and GCP identity platform with multiple domains?
We have been developing a SaaS for a while.
We decided to use Google Cloud Identity Platform to handle multi-tenant authentication, and firestore as our main database, but I have some doubts.
Can I use Identity Platform with multiple domains and…

Luis Eduardo
- 63
- 2
- 7
2
votes
1 answer
How to log failed login attempts in Google Cloud Identity platform
We use Google Cloud Identity platform to support multi-tenant federated login. Depending on the tenant, we either user external identity providers or firebase authentication. For security compliance reasons, we would like to log failed login…

sdcbr
- 7,021
- 3
- 27
- 44
2
votes
1 answer
Google API Cloud identity groups().create(): what is the field customer_id?
I would like to create a group using the API Cloud Identity and the command groups().create().
To do so, I'v used the example provided by Google:
def create_google_group(service, customer_id, group_id, group_display_name, group_description):
…

hganger
- 147
- 2
- 12
2
votes
2 answers
Unable to correctly call google cloud identity apis
Hi I'm trying to use google cloud identity apis in order to retrieve the list of users registered with CI under my organization. I've tried first with this api https://cloud.google.com/identity/docs/reference/rest/v1/groups/list passing the…

fabrizia binetti
- 41
- 4