JSON with Padding (JSONP) is a technique for working around cross-domain Ajax limitations.
4
votes
1answer
33 views
angularjs - HTTPpromise does not execute when JSONP is returned
I am trying to get a stock quote from yahoo's api and I am using angular's $http.jsonp method. The goal is when the result comes back, to have the app go to the this route: '/stocks/show_stock'. I am ...
0
votes
0answers
17 views
JSONP loading of script tags?
I have this code -
var sTerm = "summerstyle";
fnMakeCallback();
function fnMakeCallback(){
$.ajax({
...
0
votes
0answers
20 views
PHP Script to return JSONP for Sencha Touch
I've developed an app using Sencha Touch which will fetch data using JSONP on my server.
Here is my Store in Sencha
config: {
storeId: 'actor',
autoLoad: true,
model: 'App.model.actor',
proxy:{
...
1
vote
1answer
12 views
Parsing JSONP from Wunderground with jQuery
I'm having a problem parsing "wunderground" API with JavaScript and Ajax. I can get some values and some not. Here is the link for API I use:
{
"forecast":{
"simpleforecast":{
...
0
votes
0answers
12 views
ajax call to cross domain using jsonp
Hello I am struggling to get this work.
var url = 'http://xxxx/getCustomerCardInfo?requestor_email=honey@gmail.com&callback=?';
$.getJSON(url, function(data){
alert(data);
});
...
0
votes
0answers
26 views
Why does this JSONP request sometimes fail and sometimes not?
I am trying to understand how to retrieve cross-site JSONP using jQuery 1.7.2, but it seems I don't get it. I use the following idiom:
$.ajax({
url: url,
dataType: "jsonp"
})
.done(function ...
0
votes
0answers
35 views
Not able to parse JSON file from server
I have following code :
var mydata=null;
$.ajax({
type: 'GET',
async: false,
dataType: 'json',
url: ...
1
vote
1answer
27 views
jQuery AJAX can't work when injected on external URL?
I am currently trying to retrieve some data from book search sites and populate a personal database with that data. My idea is to inject the necessary jQuery on the page, so that when I see a title I ...
0
votes
0answers
11 views
Reponse with JSONP with .net MVC4 C#
I have a .net C# MVC4 application - my JS app can't parse the response.
right now I use:
var appXmlType = config.Formatters.XmlFormatter.SupportedMediaTypes.FirstOrDefault(t => t.MediaType == ...
0
votes
0answers
20 views
The dots on jsTree are not being displayed
I am currently using jsTree to display the hierarchical structure of a company. Everything works except the dots are not displaying. I have tried my code in both IE8 and Google Chrome so I doubt it is ...
0
votes
1answer
18 views
Google chrome disable same origin policy
I've followed the tutorial as the link :
Chrome: Disable same origin policy
But when I add the shortcut target apparently always fail
Shortcut :
"C:\Users\Bertho ...
0
votes
1answer
38 views
Getting `Unexpected token :` in angularjs but cannot use callback
I'm trying to query the Spotify Metadata API with AngularJS but I keep running into the following error.
Uncaught SyntaxError: Unexpected token :
Now I know typically when querying you should add ...
1
vote
0answers
12 views
Communicating from https website to http server on localhost, cross-domain
So I have a GWT webapp that needs to communicate with a desktop application. To accomplish this, the desktop program starts up a webserver at a given port (say, http://localhost:9000).
I have ...
1
vote
1answer
40 views
How to put into HTML code that will load data from another server?
I am interested in the functionality of Disqus - a user will put code from Disqus and this code will remotely fetch the data necessary. Here's an example of what Disqus provides the user:
<script ...
0
votes
0answers
15 views
How to authenticate via yahoo using javascript/jquery
Following steps from Oath Authorization Flow for yahoo, i constructed the required url to request token:
...
0
votes
1answer
23 views
“jquery.jsonp.js” GET works. What about POST PUT DELETE OPTIONS?
jsonp http methods besides GET (POST, PUT, OPTIONS, DELETE)
Using jquery built-in $.ajax method looks like this
$(document).ready(function() {
$.ajax({
type: "GET",
url: ...
0
votes
1answer
24 views
how to get the response from an ajax request with application/x-octet-stream?
i am using jsonp to get some content from a api.
the issue is that the link i have returns a file to be saved as CSV and the response is application/x-octet-stream.
if i look in chrome developer ...
0
votes
0answers
16 views
ReferenceError: jsonp not defined
So I am making an ajax request in jquery like this:
$.ajax({
url: url,
dataType: "jsonp",
jsonpCallback: 'callback',
success: function(data) {
...
-1
votes
1answer
38 views
How to get cross-domain JSON from jQuery?
I am trying to get JSON (getJSON()) from server that doesn't have support for jsonp implemented. Namely, when adding callback=? to the URL, the server does return the data, but it returns pure JSON ...
0
votes
0answers
6 views
SlideShare API » oEmbed Documentation
I am trying to embed by jsonp request
"http://www.slideshare.net/api/oembed/2?url=http://www.slideshare.net/haraldf/business- quotes-for-2011&format=jsonp&callback=myFunction"
So,Write ...
0
votes
1answer
20 views
Accessing API on another domain
There is an API on a domain. I have its URL and credentials.
When I type the API URL in the browser, it displays data in the browser. Data is in XML format.
I need to access that API using a function. ...
0
votes
2answers
22 views
Can a webservice not support JSONP?
I am trying to get data using WorldBank API. The webservice call that I am making is this. This code doesnt work.
$.ajax({
type: 'GET',
url: ...
3
votes
1answer
50 views
Is it possible to make a secure JSONP request?
I only have to support new browsers.
I have to rely on an external service to provide JSONP data, I do not own that service and it does not allow CORS.
I feel very uneasy having to trust JSONP ...
1
vote
1answer
13 views
Callback not getting called on Internet Explorer for Ajax JSONP call
I'm making an Ajax call using JSONP to fetch JSON data from a third-party (domain different from my site) and its working on Chrome and Firefox but failing on IE (9 & 10 are the versions I have ...
2
votes
3answers
37 views
Cordova app timeout when connecting to local server using ajax
I've searched high and low to try and solve this problem but to no avail. I am trying to connect a Phonegap app to the server hosted locally on my machine, but it always times out. I used the code on ...
0
votes
0answers
7 views
siemens s7-1200 GET error
I working with siemens s7-1200 web server. I'm trying to read data from 1200 so i made jsnop file and place it on 1200, and on my pc i made a web page to read that file. I've tested the code on web ...
3
votes
1answer
45 views
Overriding default parameter names in ExtJS 4 Store
I'm trying to override the default parameter name for limitParam in proxy for the Store. I want to make a JSONP call to http://search.twitter.com/search.json?q=kathmandu&rpp=2 but instead of ...
1
vote
0answers
28 views
how to fetch JSONP in php
I am trying to test this feature "Get the plain text of John 3:16 from the LEB with JSONP " from here:
http://api.biblia.com/docs/Samples
I want to fetch the JSONP data and use in my php script. I ...
0
votes
1answer
12 views
HTML5 Cache usage with Querystring
i have a problem with the HTML5 caching. Here is a brief explanation about the thing i'm trying to do:
I have a webpage(.aspx) to create and store a form.
I'm using 2 different webservices in my ...
0
votes
1answer
23 views
Evaluating JSON from popular auto-suggests
I was evaluating the various ways in which the big guys implement auto suggest. These are my observations.(Search string used was "ab") Questions towards the end.
Yahoo tries something like this, ...
-1
votes
2answers
45 views
Multiple jsonp Ajax Call with jQuery deferred method $.when
I have a simple ajax function:
function GetJsonData(api) {
return (
$.ajax({
type: 'GET',
jsonpCallback: 'callback',
url: api,
dataType: 'jsonp'
}));
}
and now when I tried to do multiple ...
0
votes
0answers
33 views
Can't request XML from URL: “Invalid HTTP destination port”
I was trying to access data from a SHOUTCast stream. They have a public stats URL that returns XML. I figured I could use YQL to get the data from that page.
I tried this query:
SELECT * FROM xml ...
1
vote
1answer
25 views
Facebook looping through returned JSON Open Graph request
Im currently requesting the Open Graph url through JSON like so:
https://graph.facebook.com/me/friends?fields=email,likes,name,birthday,location,website&access_token=$token
My JSON request is ...
0
votes
0answers
32 views
Phonegap/WebWorks parse JSON data with accented characters
I'm developing an app using PhoneGap for BlackBerry. On browsers and Ripple Emulator everything works fine. But on a real device, I'm getting a parsererror when fetching JSON data from my server.
...
0
votes
1answer
67 views
ASP.NET cross domain web service call error using jquery and jsonp
my problem is very similar to the one described here.
however, in my case I am getting the 500 Internal Server Error in firebug:
Request format is unrecognized for URL unexpectedly ending in ...
0
votes
1answer
30 views
jQuery “parseerror” with static JSONP callback function
Ok, simple JSONP setup with jQuery, built with the requirement that I have "static" URLs beyond the search term:
function handleJSONPResponse (data, status, request) {
// update UI
}
$(function ...
0
votes
0answers
15 views
connecting JSONP to input field
I've a JSONP file which I want to connect to an input, like an autocomplete, but what's wrong with this code? I also want to add the value of the input at the end of the url, because it is actually a ...
0
votes
2answers
59 views
JSON_CALLBACK not found using JSONP
I am trying to get a JSONP response working using the following code...
$http.jsonp('http://example.com:8888/?callback=JSON_CALLBACK').success( function( response )
{
console.dir( response );
});
...
0
votes
1answer
119 views
How to configure Angular $resource (ngResource) to pull data from another domain using CORS
I'd like to be able to setup resources using $resource using CORS to request my data. I've got CORS working with $http but the same techniques don't apply to $resource and I was hoping someone can ...
0
votes
1answer
35 views
Simple Json format when requesting google spreadsheet
I am using the google spreadsheet api to read from a google sheet in javascript. I need to read this sheet:
...
0
votes
1answer
23 views
How do I pass AJAX JSONP data into a function?
I asked a similar question already, but I discovered that I needed to use AJAX and JSONP, which opened up a whole new world of hurt.
A company that I am working with has an API for their Privacy ...
2
votes
1answer
47 views
get latitude and longitude using ajax jasonp
i am try to get latitude and longitude using ajax jasonp.
with this:-
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
...
0
votes
1answer
24 views
JQuery not working on redirection
I have an iframe within div
<div>
<iframe pageB>
</div>
on button click in iframe, redirected to a different page A - I have a jquery to hide the div on page load of A - so this ...
0
votes
0answers
64 views
Google Maps API V3 and Fusion Tables - Error in query: Request timed out
I try to display labels for Google Fusion Tables inside Google Maps API V3,
I and I set to labels display when Zoom is 9 or less;
but when page download first map at Zoom for 4 is Ok and sometimes ...
2
votes
2answers
61 views
API stop supporting JSONP
I made a simple API in PHP.
This API echo's an object using json_encode.
Per example:
echo json_encode($obj);
I am using jQuery to retrieve the information from this API.
When testing the script ...
2
votes
1answer
28 views
Ajax json respond not getting in success in POST method
I am not getting json response/success from ajax while i am using jsonp datatype. But i am getting blank response.Is that of GAPI i am getting this issue or any other.I find similar problem
Not able ...
0
votes
1answer
87 views
Google Maps API V3 - Label Fusion Tables polygons by employing InfoBox
I'm trying inside Google Maps API V3 to Label Fusion Tables polygons by employing InfoBox,
for this I use example from http://www.geocodezip.com/geoxml3_test/v3_FusionTables_zipcode_map_whiteBg.html,
...
0
votes
0answers
20 views
JSONP Wordpress ANDROID = fail
I needed to access the content of a WordPress page, via JSONP.
I've managed to do it with this pluging in WP: http://wordpress.org/extend/plugins/json-api/
And this code in the HTML page that request ...
1
vote
0answers
82 views
Passing C# class to javascript (no web server)
I am writing a desktop application in C# and would like to pass data from C# to an HTML 5 panel (javascript or jquery). I am using CefSharp which embeds Chromium into the application, it successfully ...
0
votes
1answer
51 views
BackboneJS collection Fetch empty result
Using a backbone collection I am trying to fetch JSON from a page. However browsing to this page does give me a JSON, using the collection.fetch does not.
Looking in Firebug I see a:
"GET ...




