Hi there! I’m getting the following as response.data when posting to Cloudflare turnstile
!� �n�W�\�AF!K�'�R�A˝��b3G���BmxB�~Y�wM=9��
Tested on 3 different remote nodes, all with the same error… On my localhost, it works perfectly… Anybody with an idea why I get this output or what does it mean?
Started happening randomly today…
const response = axios.post(
"https://challenges.cloudflare.com/turnstile/v0/siteverify"
);
On my local it returns: { success: false, ‘error-codes’: [ ‘missing-input-secret’ ] }
On my server it returns: !
f����b���LS��n�
N��R�8��a��ah��(A���?��˰,i��6�I�E��yf��@֎S�u
B�u\qO��4����A�m
There are all sorts of these messages popping up every now and than.
The only way I can force normal output on server is the following:
const response = axios.post(
"https://challenges.cloudflare.com/turnstile/v0/siteverify",
{}
);
Which not returns { success: false, ‘error-codes’: [ ‘bad-request’ ] }, because I posted {} json instead of form. If I post form, I always get a very weird output on server…
Any suggestions?