Except YQL ,Is there any way to get ajax’s response and data from other domain without modifying server side’s code?
YQL has limit (1000 calls per hour) for free user , but most of people said it’s actually less.
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.
If what you mean by “without modifying server side’s code” is not modifying the server of the data source, then you can have your own proxy server (basically making your own YQL server) to read the remote data. This is possible because the server-side is not bound to the Same-Origin Policy.
So you can AJAX your server, then let your server read the remote server using some form of
wget,curlorfopen, and return what was retrieved: