Tagged Questions

6
votes
4answers
2k views

How to call external url in jquery?

I am trying to put comments on Facebook wall using jquery. But my ajax call not alowing external url . can anyone explain how can we use external url with jquery ? below is my code : var ...
2
votes
1answer
547 views

JSONP question for making PUT/POST/DELETE cross-domain requests

I've created a RESTful API that supports GET/POST/PUT/DELETE requests. Now I want my API to have a Javascript client library, and I thought to use JSONP to bypass the cross-domain policy. That works, ...
1
vote
2answers
33 views

Check if cross-domain ajax applies

Is there a "safe" way to check if the same-origin policy applies to an URL before actually trying? Here is what I have: function testSameOrigin(url) { var loc = window.location; var a = ...
1
vote
0answers
433 views

Accessing Facebook servers with cross-domain JSONP and malformed JSON answer

I am trying to access facebook autocomplete service via a cross-domain scripting. replace id with your personal facebook user id, in the previous url. Please note that Facebook is returning a ...
0
votes
2answers
181 views

Refused to get unsafe header “Location”

I have a website and my REST api server. I do ajax post request to the REST server to create new model. Answer for this request will be "HTTP/1.1 201 Created" response with header "Location: ...
0
votes
1answer
180 views

Jquery Cross-domain Problem when try a put reques in

I try to make a PUT request on JQUERY to a RESTFULL service, when try make the request to url with localhost (http://localhost/Domain) the request work. But when change the url to some ip ...
0
votes
2answers
1k views

AJAX Cross-Domain problem

I have following problem. My webapp is running at http://webapp.mysite.com/browser/ And I want to make a request to http://mysite.com/request?.... If I make a standart ajax call with the second ...
0
votes
3answers
66 views

Difference beetween http://www.app.in and http://app.in

What is the difference between http://www.app.com and http://app.com and how it affects to cross-domain policy of Ajax I mean i added ajax request in app $.ajax({ ...
0
votes
1answer
343 views

Is it possible to get the contents of a Google Docs Spreadsheet from within a GMail gadget?

Here is what I figured so far: To get content of the spreadsheet "od6" with the ID "0Aj3x4n7SOPMRdFA2VmJuampIUDFzdlAwRUwtSEJacmc" you have to acces this URL: ...
0
votes
4answers
436 views

http, https & ajax bypass, maybe?

I have a server script that I need to pass data to from the browser without reloading the page (aka ajax). The data is sensitive so should be sent via https. The page however is on the http layer. ...