A method to bypass the queue and directly subscribe to GPT Plus services

  1. Log in to https://chat.openai.com/.
  2. Press F12 in your browser to open the developer console, and switch to the ‘console’ tab.
  3. Copy a specific JavaScript code, paste it in the console, and wait a few seconds. This should automatically redirect you to a payment page, where you can proceed to make the payment.
// Request to obtain an authentication session
fetch("/api/auth/session")
  .then(function (r) {
    console.log("authentication session response:", r);
    return r.json();
  })
  // Processing the authentication session response
  .then(function (r) {
    console.log("authentication sessio result:", r);

    // Initiating payment checkout request
    return fetch("/backend-api/payments/checkout", {
      method: "POST",
      headers: { Authorization: "Bearer " + r.accessToken }
    });
  })
  // Processing payment checkout response
  .then(function (r) {
    console.log("payment checkout response:", r);
    return r.json();
  })
  // Processing payment checkout result and Opening the payment page
  .then(function (r) {
    console.log("processing payment checkout result:", r);
    open(r.url);
  })
  // Handling any potential errors
  .catch(function (error) {
    console.error("error:", error);
  });

Leave a Reply

Your email address will not be published. Required fields are marked *