Hey there! The java.net.sockettimeoutexception: read timed out error can be tricky. I’ve had this issue when the server was fine, but the client-side code wasn’t handling the connection properly.
Have you tried setting a socket timeout explicitly in your code? Something like `socket.setSoTimeout(5000);` might help. Also, tools like Charles Proxy can help you debug the network calls and see where the delay is happening.
If you’re still stuck, maybe try running your app on a different network to rule out local issues. Good luck debugging!
Have you tried setting a socket timeout explicitly in your code? Something like `socket.setSoTimeout(5000);` might help. Also, tools like Charles Proxy can help you debug the network calls and see where the delay is happening.
If you’re still stuck, maybe try running your app on a different network to rule out local issues. Good luck debugging!
