0
I’m making a simple request using phonegap:
$.ajax({
type: "GET",
dataType: "json",
url: "http://mydomain.com/request",
data: params,
success: function(result){
},
error: function(e, data, status, xhr){
}
})
But when running it executes the following url:
http://<ip>:3000/proxy/http://mydomain.com/request
All proxies are off
– hugofsousa
People commented on Sozão to try with
phonegap browser run
instead ofphonegap serve
not to use the proxy, I do not know if you could apply to your case.– Bacco
I was running through the desktop app itself, not via command line
– hugofsousa
There is no configuration place where I inform my base url? to replace the <ip>
– hugofsousa