Uncaught SyntaxError: Unexpected identifier while calling JSONP











up vote
1
down vote

favorite












My problem with CORS, Cross origin, we search from google and found solution with JSONP, but we recieve error while calling API throught JSONP, below mycode.



$.ajax({
type: 'POST',
url: 'myapi',
data: {login:login,key:key,action:action, format:'jsonp'},
dataType: "jsonp",
jsonpCallback: "jsonp_callback",
crossDomain: true,
success : function(response){
alert(response);
},
error: function(result) {
alert('error');
}
});

function jsonp_callback(json){
alert(json);
}


Uncaught SyntaxError: Unexpected identifier



please help me and thanks in advance.










share|improve this question




















  • 1




    please can you show the data you're downloading? Whatever it is, it's not what jquery was expecting
    – ADyson
    Nov 10 at 12:20












  • It looks like your JSON is not valid.
    – mx0
    Nov 10 at 12:26










  • response return plain text format.
    – Arsalan khatri
    Nov 10 at 12:28










  • please see attached snapshot of my data.
    – Arsalan khatri
    Nov 10 at 12:29










  • Please send server side code used to handle this ajax call.
    – Kamran Syed
    Nov 10 at 12:52















up vote
1
down vote

favorite












My problem with CORS, Cross origin, we search from google and found solution with JSONP, but we recieve error while calling API throught JSONP, below mycode.



$.ajax({
type: 'POST',
url: 'myapi',
data: {login:login,key:key,action:action, format:'jsonp'},
dataType: "jsonp",
jsonpCallback: "jsonp_callback",
crossDomain: true,
success : function(response){
alert(response);
},
error: function(result) {
alert('error');
}
});

function jsonp_callback(json){
alert(json);
}


Uncaught SyntaxError: Unexpected identifier



please help me and thanks in advance.










share|improve this question




















  • 1




    please can you show the data you're downloading? Whatever it is, it's not what jquery was expecting
    – ADyson
    Nov 10 at 12:20












  • It looks like your JSON is not valid.
    – mx0
    Nov 10 at 12:26










  • response return plain text format.
    – Arsalan khatri
    Nov 10 at 12:28










  • please see attached snapshot of my data.
    – Arsalan khatri
    Nov 10 at 12:29










  • Please send server side code used to handle this ajax call.
    – Kamran Syed
    Nov 10 at 12:52













up vote
1
down vote

favorite









up vote
1
down vote

favorite











My problem with CORS, Cross origin, we search from google and found solution with JSONP, but we recieve error while calling API throught JSONP, below mycode.



$.ajax({
type: 'POST',
url: 'myapi',
data: {login:login,key:key,action:action, format:'jsonp'},
dataType: "jsonp",
jsonpCallback: "jsonp_callback",
crossDomain: true,
success : function(response){
alert(response);
},
error: function(result) {
alert('error');
}
});

function jsonp_callback(json){
alert(json);
}


Uncaught SyntaxError: Unexpected identifier



please help me and thanks in advance.










share|improve this question















My problem with CORS, Cross origin, we search from google and found solution with JSONP, but we recieve error while calling API throught JSONP, below mycode.



$.ajax({
type: 'POST',
url: 'myapi',
data: {login:login,key:key,action:action, format:'jsonp'},
dataType: "jsonp",
jsonpCallback: "jsonp_callback",
crossDomain: true,
success : function(response){
alert(response);
},
error: function(result) {
alert('error');
}
});

function jsonp_callback(json){
alert(json);
}


Uncaught SyntaxError: Unexpected identifier



please help me and thanks in advance.







javascript php json ajax jsonp






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 10 at 12:21









ADyson

21.5k112441




21.5k112441










asked Nov 10 at 12:16









Arsalan khatri

63




63








  • 1




    please can you show the data you're downloading? Whatever it is, it's not what jquery was expecting
    – ADyson
    Nov 10 at 12:20












  • It looks like your JSON is not valid.
    – mx0
    Nov 10 at 12:26










  • response return plain text format.
    – Arsalan khatri
    Nov 10 at 12:28










  • please see attached snapshot of my data.
    – Arsalan khatri
    Nov 10 at 12:29










  • Please send server side code used to handle this ajax call.
    – Kamran Syed
    Nov 10 at 12:52














  • 1




    please can you show the data you're downloading? Whatever it is, it's not what jquery was expecting
    – ADyson
    Nov 10 at 12:20












  • It looks like your JSON is not valid.
    – mx0
    Nov 10 at 12:26










  • response return plain text format.
    – Arsalan khatri
    Nov 10 at 12:28










  • please see attached snapshot of my data.
    – Arsalan khatri
    Nov 10 at 12:29










  • Please send server side code used to handle this ajax call.
    – Kamran Syed
    Nov 10 at 12:52








1




1




please can you show the data you're downloading? Whatever it is, it's not what jquery was expecting
– ADyson
Nov 10 at 12:20






please can you show the data you're downloading? Whatever it is, it's not what jquery was expecting
– ADyson
Nov 10 at 12:20














It looks like your JSON is not valid.
– mx0
Nov 10 at 12:26




It looks like your JSON is not valid.
– mx0
Nov 10 at 12:26












response return plain text format.
– Arsalan khatri
Nov 10 at 12:28




response return plain text format.
– Arsalan khatri
Nov 10 at 12:28












please see attached snapshot of my data.
– Arsalan khatri
Nov 10 at 12:29




please see attached snapshot of my data.
– Arsalan khatri
Nov 10 at 12:29












Please send server side code used to handle this ajax call.
– Kamran Syed
Nov 10 at 12:52




Please send server side code used to handle this ajax call.
– Kamran Syed
Nov 10 at 12:52

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238862%2funcaught-syntaxerror-unexpected-identifier-while-calling-jsonp%23new-answer', 'question_page');
}
);

Post as a guest





































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238862%2funcaught-syntaxerror-unexpected-identifier-while-calling-jsonp%23new-answer', 'question_page');
}
);

Post as a guest




















































































Popular posts from this blog

Full-time equivalent

Bicuculline

さくらももこ