Authentication

Authentication with Google and Bearer Token Usage

Overview

This guide explains how to authenticate with Google, retrieve a Bearer token, and use it for making authenticated requests to the minifyurl.choreoapps.dev API.


Step 1: Open the URL and Authenticate

  1. Open the following URL in your web browser: https://minifyurl.choreoapps.dev/.

  2. You will see a Sign in with Google button on the page. Click it to begin the authentication process.


Step 2: Complete the Google Authentication

  1. After clicking the Sign in with Google button, you will be redirected to a Google login page if you are not already logged in.

  2. Enter your Google credentials (email and password) to log in to your Google account.

  3. Once logged in, the system will redirect you back to the application.


Step 3: Retrieve Your Bearer Token

  1. After successful authentication, you will receive a Bearer token as part of the response.

  2. The response will look like this:

    {
      "success": true,
      "token": "ya29.a0ARW5m77EqnnOrXFHZOTCeZUXIVcQsQpU4pRc20s3LfNdX7wS7iLF3rjyYEWXUbyKWPrvCVrtVytpxlYrQ6qX5hVGQ20c_phWSjq4MlpZdL8mfBvFhi0JR63rhqQ2lO5NUk_AM8JbwyJdnGwYxVvAm8I6kfmki7041EMaCgYKAQUSARESFQHGX2MiFl5NTQdFNwCW3fawgHteqw0170"
    }

Last updated