Ah, that error usually pops up when you're trying to parse an HTML response (like a full web page) as JSON. The browser or your code expected JSON but got an HTML document instead — often this happens when an API call fails or is redirected to a login page.
Ah, that error usually pops up when you're trying to parse an HTML response (like a full web page) as JSON. The browser or your code expected JSON but got an HTML document instead — often this happens when an API call fails or is redirected to a login page.