I am developing a mobile application using PhoneGap, and I have to access some services from another project. I am using jquery-2.0
If the url: 'http://localhost:62465/api/account?email=johndoe@yahoo.com' is not reachable from your mobile, there's a very useful trick to use.
With www.ngrok.com, you can assign an internet domain to your locally unreachable port.
Just signup, get an access token, and then you can use:
ngrok -authtoken myauthtoken -subdomain=mysubdomainname 62465
And then you can access your computer with the url http://mysubdomainname.ngrok.com/api/account?email=johndoe@yahoo.com