I am able load the data using RESTclient(POST Method only) in FireFox. but while development i am not able to load the data in jquery or ajax using post method.
can anyone help me. ?
Thanks in Advance. :)
I am able load the data using RESTclient(POST Method only) in FireFox. but while development i am not able to load the data in jquery or ajax using post method.
can anyone help me. ?
Thanks in Advance. :)
Due to cross site issues, you usually cannot unless they support jsonp. Take a look at this question/answer for more details and check with your api provider to see if they support jsonp.
You could however, use php and curl. Set up a page on your server that uses php and curl to get the information from the url and and then use jquery/ajax to get data from that page ( on your server )it to your page.
Like a wrapper.