javascript - Translate ajax call to CORS -


i trying access api via localhost using following code:

  $.ajax({             url: "http://domain.xxx.net/api/tokens.json?email=xxx@xxx.net&password=xxx",             //method: "get",             headers: { "accept": "application/xml", "content-type": "application/xml", "access-control-allow-origin": "*"},             datatype: "json",             success:function(data){                 alert(data);},             success:function(e){                 alert(e.message);}      }); 

i have read on internet not possible due error below.

no 'access-control-allow-origin' header present on requested resource. origin 'http://localhost:3000' therefore not allowed access.

after research said can use jsonp or cors. able use jsonp however, getting js error because api supports both json & xml , not jsonp. trying convert ajax call cors can't understand syntax. same error 'access-control-allow-origin'.

i hope can me translate one. thanks.

access-control-allow-origin should in response header. sounds server you're trying data did not enable cors (set response header of access-control-allow-origin). if case don't think you'll able resource through javascript. you'll need backend.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -