#Unable to use ChatGPT on my desktop

9 messages · Page 1 of 1 (latest)

wintry trout
#

Bug Report:

Steps to reproduce:

  1. Log in using Google at https://chat.openai.com/chat
  2. Log in success
  3. Post query

Expected result:

Chatbot responds to my query.

Actual result:

See screenshot

Additional information

Browser: Chrome, Edge
OS: Windows 10
Troubleshooting: Disabled all extensions, cleared cache and cookies.
Also, tested the internet connection and chat on Android Phone, which was a success. So the issue is just on my desktop.

vital marsh
#

Same issue here. Even the submit button isn’t working sometimes.

raven blaze
#

Given that the error message reported to the user is really vague I can't say that this will solve your problem, but I've resolved the same error message / being locked out of sending messages by deleting my openai cookies using my browser's data settings and then refreshing and relogging into the service.

In my case, I lost no data from this operation. However I do have GPTPlus and I'm not sure if that could possibly impact whether or not your data will be lost if you delete your cookies. So tread cautiously, and your mileage may vary.

wintry trout
#

Yeah, I did clear my cache and my cookies. No go. 😦

raven blaze
#

Sorry to hear you're still having issues. I took it upon myself to ask GPT4 your question for you. Hopefully you find the answer I engineered useful, but more hopefully your own personal access is restored quickly.

Here's the response:

**Here is a detailed guide on making an HTTP request in JavaScript using three common methods:

XMLHttpRequest (XHR)
Fetch API
Axios (third-party library)**
/* Notable Keywords
- XMLHttpRequest (XHR): An API for client-server communication, allows you to make HTTP requests.
- Fetch API: A modern, promise-based API to make HTTP requests.
- Axios: A third-party library for making HTTP requests, supports both browser and node.js.
- Promises: Objects representing the eventual completion (or failure) of an asynchronous operation and its resulting value.
- async/await: A syntax to work with promises in a more comfortable way, making the code look synchronous while it's asynchronous.
*/

/* Method 1: XMLHttpRequest (XHR)
Step 1: Create a new instance of XMLHttpRequest */
const xhr = new XMLHttpRequest();

/* Step 2: Set up the request */
xhr.open('GET', 'url_goes_here', true);

/* Step 3: Define the callback function to handle the response */
xhr.onload = function () {
  if (xhr.status >= 200 && xhr.status < 400) {
    const data = JSON.parse(xhr.responseText);
    console.log(data);
  } else {
    console.error('Error: ' + xhr.status);
  }
};

/* Step 4: Define the callback function for errors */
xhr.onerror = function () {
  console.error('Request failed');
};

/* Step 5: Send the request */
xhr.send();

/* Method 2: Fetch API
Step 1: Make the HTTP request and handle the response using Promises */
fetch('url_goes_here')
  .then(response => {
    if (!response.ok) {
      throw new Error('Error: ' + response.status);
    }
    return response.json();
  })
  .then(data => {
    console.log(data);
  })
  .catch(error => {
    console.error(error);
  });

/* Method 3: Axios (third-party library)
Step 1: Install Axios via npm or include it via CDN */
// For npm: Run `npm install axios` in your project directory
// For CDN: Add <script src="url_goes_here"></script> in your HTML file

/* Step 2: Import Axios */
// For a module environment (e.g. using Webpack, Rollup, etc.), use the following import statement:
// import axios from 'axios';

/* Step 3: Make the HTTP request and handle the response using Promises or async/await */
// Using Promises
axios.get('url_goes_here')
  .then(response => {
    console.log(response.data);
  })
  .catch(error => {
    console.error(error);
  });

// Using async/await
async function fetchData() {
  try {
    const response = await axios.get('url_goes_here');
    console.log(response.data);
  } catch (error) {
    console.error(error);
  }
}
fetchData();
wintry trout
#

Oh no no. That was just a test query that I did to show the error. I get this error no matter WHAT I ask it.

#

I'm just completely stumped.

raven blaze
wintry trout