Skip to main content

FAQ

Why does initiating a POST request redirect to a GET one?

Because the target APIs endpoint has adopted the HTTPS protocol, but the prefix URL was filled in with HTTP when sending the API request, which caused an error.

Changing the request protocol from HTTP to HTTPS can solve this problem.

How to resolve errors such as SyntaxError: Unexpected token } in JSON at position 214?

This is usually due to incorrect JSON format, such as an extra or missing bracket, comma, or an improperly closed string. You can use some online JSON validation tools to check for format errors.