Questions tagged [google-identity-toolkit]

Identity Toolkit is a complete authentication service for any site or app. By providing a secure authentication database and optimized sign-in flows, Identity Toolkit helps you get back to building the features that matter.

For more information, please see the Identity Toolkit documentation.

240 questions
31
votes
1 answer

What is the difference between Google Identity Toolkit, Google OAuth, Firebase Auth and Google+ sign in

For my understanding, Google Identity Toolkit provides a layer for login with different accounts, like Facebook, Yahoo etc. but how does that differ from the Google OAuth implementation? And regarding Google+ sign in, it is still using OAuth, but…
23
votes
2 answers

How to Refresh Google AccessToken in Firebase? #AskFirebase

I am attempting to build a web app that will be integrated with and installed into Google Drive. The user will be able to create and share my app's files in their drive. I am trying to write it using Firebase so I can leverage many of the great new…
19
votes
6 answers

Swift bridging header file won't work with use_frameworks

I'm trying to use GoogleidentityToolkit library to handle login an things. I enable use_frameworks! on my pod file, but the module GITkit can't be found. I'm trying to figure out what's going. As far as I know if you use "use_frameworks" you don't…
AXSM
  • 1,142
  • 1
  • 12
  • 27
11
votes
3 answers

Google Identity Toolkit returns CONFIGURATION_NOT_FOUND

I'm trying to Build Google+ Sign In On Android Device using Google Identity Toolkit , I followed the Quick Start Guide on https://developers.google.com/identity/toolkit/android/ , but I'm repeatedly getting the following error. "error": { "errors":…
Surya
  • 121
  • 1
  • 6
8
votes
2 answers

Can you extend Google Identity Toolkit to include facebook/twitter/etc?

I decided to look into using Google Identity Toolkit. I knew I liked the UI, and the idea of using a "federated" login system. I'm now having my doubts, as while my site works well with gmail/ymail/hotmail etc, it doesn't seem to support any of the…
dazbradbury
  • 5,729
  • 5
  • 34
  • 38
8
votes
1 answer

Authenticate with signInWithCredential()

I'm trying to connect to the second Firebase app and authenticate with signInWithCredential(), but I don't know how to get valid idToken for the second app: connect(accessToken: string, config: FirebaseAppConfig) { let one: firebase.app.App =…
Sasxa
  • 40,334
  • 16
  • 88
  • 102
8
votes
3 answers

Google Identity Toolkit not getting Client ID for Login

I am using Google Identity Toolkit for federated login in my iOS 9-compatible app. I recently updated all of the frameworks and libraries and started using Cocoapods for dependency management. Now, while Facebook login works fine, when the user taps…
Hersh Bhargava
  • 615
  • 4
  • 19
7
votes
1 answer

CORS issue only when revoking Token by calling (Google Identity Services) GIS's google.accounts.oauth2.revoke

I am trying to invoke GSI Javascript google.accounts.oauth2.revoke method. Under the hood it sends a request to https://oauth2.googleapis.com/revoke. However there is CORS issue: await new Promise(r => google.accounts.oauth2.revoke(token,…
Luke Vo
  • 17,859
  • 21
  • 105
  • 181
7
votes
1 answer

Include cookies in HTTP requests when using the Google Cloud Endpoints JavaScript client

I am currently making API calls to my backend using the Google Cloud Endpoint generated JavaScript Client. The problem is the cookies for my page are not being added to the HTTP requests. How can I add the Gitkit gtoken cookie to my…
6
votes
0 answers

Firebase Authentication vs Google Identity Toolkit Pricing

I see firebase has no server authentication API's added in the Firebase Admin but has only user management (CreateUser and UpdateUser). Firebase only offers signin through client libraries where it depends on Google Identity Platform…
Ayyappa
  • 1,876
  • 1
  • 21
  • 41
6
votes
1 answer

Why did GoogleAuth.then() stop calling callbacks?

My application relies on Google Sign-In. Suddenly, today, the GoogleAuth.then() method has stopped calling its callbacks. This code does nothing (printing neither result): gapi.auth2.init({ client_id: 'MYID.apps.googleusercontent.com', …
stickfigure
  • 13,458
  • 5
  • 34
  • 50
5
votes
2 answers

Unknown OTP requests from Lebanon in firebase auth

I am using firebase phone authentication in a website and react native application. We are getting an ~1,200-1,500 unknown sms sent in our firebase dashboard. None of these get verified, but we are incurring a cost for the same. Basis our analytics…
5
votes
1 answer

Migrating off of GAPI to Google Identity Services (GIS), server side question

How do I get a refreshed id token using the new system (GIS)? I have a web app that uses Google sign-in and sends an id_token to my servers to use some GCP services. I was using GAPI signin2/auth2 in the following way: gapi.client.init(API_KEY,…
5
votes
1 answer

Intermittent (but frequent) Google Identity Toolkit verification error: "Plaintext too large"

I'm sometimes - but not always - getting an error from Google Identity Toolkit that says "Plaintext too large". It appears to be in a section when it should be trying to verify the signature (using RSA). Since it's verifying the SHA256 hash of the…
4
votes
2 answers

Identity Toolkit API config returns "CONFIGURATION_NOT_FOUND"

I am trying to enable Firebase Authentication in my project, and to add Phone Auth to it, via API (without using the GUI console). I am using the Service Usage API in order to enable Identity Toolkit, and then trying to use Identity Toolkit API in…
1
2 3
15 16