I have an app that on load requests data from several APIs. Today, I wanted to test the app when publicly accessed by anonymous access, but one of the requests fails. Well, the request itself succeedes, but the response is just
<html>
<head>
<title>Request Rejected</title>
</head>
<body>
The requested URL was rejected. Please consult with your administrator.<br>
<br>
Your support ID is: 13051143813188554833<br>
<br>
<a href='javascript:history.back();'>[Go Back]</a>
</body>
</html>
The URL I’m requesting is https://a2a.bancaditalia.it/infostat/dataservices/export/EN/CSV/ALL/CUBE/BANKITALIA/DIFF/QMOT0100 (Opening link will download a ZIP)
simply put in the URL
field of the action:
I also tried to create a datasource with the Base URL
set to this link and Anonymous access
allowed, but it still “fails”.
I don’t really understand what the problem is because the payload of the request is almost the same. The only differences are the parameters environment
, set to prod
instead of dev
, and isBuilder
, set to false
instead of true
.
If any of you got an idea or suggestion, I’m all ears.