Is it even possible to perform a cross-domain POST Ajax request without using proxy? I’m willing to use any kind of library to do this.
P.S. Request response is in JSON format.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is no way to do it if you don’t control the server. Server side proxy is your only option.
Good thing is server-side proxy is fairly easy to do. Just create an endpoint that accepts the details of the request you want to make (http method, url, params), and then use whatever URL mechanism your framework of choice has to hit the other domain.