On integrating hosted payment page 2.0 (ver 1.3.0 of zuora-min.js) in callback (see code below) I caught next error: "Error on request payment page. Errorcode=Invalid_Security, errorMessage=Request with protocol [http://localhost:63560] is not allowed for page 2c92c0f953132a5a01532e9726034493 [https://anypage.com]" ---- Code example: ---- if (response.success) { window.location.replace(redirectUrl); } else { if(response.responseFrom == "Response_From_Submit_Page") { alert("Response_From_Submit_Page errorcode=" + response.errorCode + ", errorMessage=" + response.errorMessage); } else{ alert("Error on request payment page. Errorcode=" + response.errorCode + ", errorMessage=" + response.errorMessage); } } --- Please help to understand what does this error mean and what security option and where to change, since we stuck on this.
... View more