Skip to content Skip to sidebar Skip to footer

Phonegap Build .ajax Request Returning 404

I'm working on a Phonegap app which is built using the Adobe Phonegap Build service. It currently uses Phonegap 3.7.0. All requests made via jQuery .ajax method are returning a 404

Solution 1:

I fixed this by changing the access token in the config.xml:

From

<accessorigin="http://www.example.com*" />

...to...

<accessorigin="*"/>

Post a Comment for "Phonegap Build .ajax Request Returning 404"