Reputation: 2735
I'm attempting to make an XMLHttpRequest (i.e. $.ajax) from a google app engine application (front-end) to another google app engine app (back-end that returns JSON), however, when I try the call always fails ... probably because the user from the first application is not logged into the second application, I was wondering if some of you had the same issue and how is it possible to resolve it.
(GAE Java SDK)
Thanks
Upvotes: 0
Views: 237
Reputation: 4960
If the two apps have different URLs, it might be related to this:
http://en.wikipedia.org/wiki/Same_origin_policy
Upvotes: 1