I am making a JSONP AJAX request and receiving an error:
Uncaught SyntaxError: Unexpected token
What am I doing wrong in my code?
$.ajax({
url: 'http://api.server32.trustklik.com/apiv1/website/reviews?client_id=098jdsahq67tgysfrtf1babza8y97z8h&client_secret=nfijsadhf7843ryuhfy34287yhrfuihf872h4831qzaqwd32qcwqefcmowqkoeqwkfjieuqhixefhuiwrehfo&domain_name=www.uatourtesting.rajapremi.co.id',
dataType: 'JSONP',
jsonpCallback: 'callback',
type: 'GET',
success: function (data) {
console.log(data);
}
});
This is my fiddle: http://jsfiddle.net/repjt/590/
Hi your response data is not properly formatted.
I mean it is not valid json data.
Copy your response data and validate on JSON Validator
nothing wrong with your request. "avatar_url" having escape char
your response
change it to
instead of having http:// put http:////.