I have the same problem, but a few hours later, to find my problem, I left.
ionic.config.json
{ "name": "KickStarter", "app_id": "85ff0666", "v2": true, "typescript": true, "proxies": [ { "path": "/mobile", "proxyUrl": "http://xxxxx:port/mobile" } ] }
you must use ionic g provider [name-of-provider] --ts , it will generate the provider to make the request as follows:
export class AuthProvider { data: any = null; constructor(public http: Http) { } load() { if (this.data) {
just remember: /mobile/api/authentication β /mobile from path in ionic.config.json .
source share