SignIn is deprecated for new client application
  • 08-May-2023
Lightrun Team
Author Lightrun Team
Share
SignIn is deprecated for new client application

SignIn is deprecated for new client application

Lightrun Team
Lightrun Team
08-May-2023

Explanation of the problem

An error has occurred: `idpiframe_initialization_failed`. This error is caused by the use of deprecated libraries for user authentication or authorization in a newly created client application.

Troubleshooting with the Lightrun Developer Observability Platform

­

Getting a sense of what’s actually happening inside a live application is a frustrating experience, one that relies mostly on querying and observing whatever logs were written during development.
Lightrun is a Developer Observability Platform, allowing developers to add telemetry to live applications in real-time, on-demand, and right from the IDE.

  • Instantly add logs to, set metrics in, and take snapshots of live applications
  • Insights delivered straight to your IDE or CLI
  • Works where you do: dev, QA, staging, CI/CD, and production

Start for free today

Problem solution for SignIn is deprecated for new client application

To resolve this issue, new clients must use the new libraries for user authentication or authorization. Existing clients must also migrate to the new libraries before the old ones are deprecated.

 

Other popular problems with react-google-login

Problem: ­Login button is disabled in Production

This issue has been reported by several users on GitHub 1.

Solution:

A potential solution is to ensure that the clientId and cookiePolicy props are correctly set.

Code snippet:

<GoogleLogin
    clientId="YOUR_CLIENT_ID"
    cookiePolicy={'single_host_origin'}
    ...
/>

Problem: OnFailure Method is silently called when page loads and when successfully logged in to Google

This issue has also been reported on GitHub

Solution: Component optimization

A potential solution is to check the error object passed to the onFailure callback for more information on why the method is being called.

Code snippet:

<GoogleLogin
    ...
    onFailure={(error) => {
        console.log(error);
    }}
/>

 

Problem: 403: Request had insufficient authentication scopes

This error occurs when the requested scopes are not authorized for the given clientId

Solution:

A potential solution is to ensure that the requested scopes are authorized for the given clientId in the Google Cloud Console.

Code snippet:

<GoogleLogin
    ...
    scope="profile email"
/>

A brief introduction to react-google-login

React-google-login is a third-party React library that provides a convenient and easy-to-use way to integrate Google Sign-In into your React applications. This library is built on top of the Google Sign-In API, which is a secure authentication system that allows users to sign in to your application using their Google credentials. The library offers a simple API that abstracts away much of the complexity of the underlying API and provides a straightforward way to add Google Sign-In functionality to your React application.

React-google-login allows you to easily add a Google Sign-In button to your React application by providing a component that wraps around a button element. The library also provides an event handler that is triggered when the user clicks the button, which then opens a Google Sign-In popup window. Once the user has successfully authenticated with Google, the library returns an access token that can be used to make authenticated requests to Google APIs. Overall, react-google-login is a useful and powerful library that simplifies the integration of Google Sign-In functionality into your React applications.

 

Most popular applications of react-google-login include

­

  1. Authentication: React-google-login can be used to provide authentication functionality to your React application. By integrating Google Sign-In, you can allow users to log in to your application using their Google credentials. This eliminates the need for users to create new accounts and passwords for your application, which can improve the user experience. The library provides an easy-to-use API for handling the authentication process, including the creation of a Google Sign-In button and the retrieval of an access token for making authenticated requests.
  2. Accessing Google APIs: Once a user has authenticated with Google through react-google-login, the library returns an access token that can be used to make authenticated requests to Google APIs. This allows you to integrate with various Google services, such as Google Drive, Google Calendar, and Google Sheets. The access token can be used in conjunction with other libraries, such as the Google API Client Library for JavaScript, to make requests to these services.
  3. Customization: React-google-login provides a high degree of customization, allowing you to tailor the Google Sign-In button to fit the design and style of your React application. For example, you can specify the size and color of the button, as well as the text that appears on the button. Additionally, the library provides event handlers that allow you to customize the behavior of the button in response to various events. For example, you can specify a function to be called when the user clicks the button, or when the authentication process is complete.

Code block example:

import React from 'react';
import GoogleLogin from 'react-google-login';

const responseGoogle = (response) => {
  console.log(response);
}

const GoogleLoginButton = () => {
  return (
    <GoogleLogin
      clientId="YOUR_CLIENT_ID_HERE"
      buttonText="Login with Google"
      onSuccess={responseGoogle}
      onFailure={responseGoogle}
      cookiePolicy={'single_host_origin'}
    />
  );
}

In the above code block, we import the GoogleLogin component from react-google-login and define a function responseGoogle that will be called when the authentication process succeeds or fails. We then create a GoogleLoginButton component that renders a Google Sign-In button with the specified text and event handlers. Finally, we pass our client ID and cookie policy as props to the GoogleLogin component. This code block demonstrates how easy it is to create a custom Google Sign-In button using react-google-login.

Share

It’s Really not that Complicated.

You can actually understand what’s going on inside your live applications.

Try Lightrun’s Playground

Lets Talk!

Looking for more information about Lightrun and debugging?
We’d love to hear from you!
Drop us a line and we’ll get back to you shortly.

By submitting this form, I agree to Lightrun’s Privacy Policy and Terms of Use.