Proxy Problems with Ionic

In ionic2 ionic.config.json is working for me am using beta version only. And this is my proxy:

{
  "name": "myApp",
  "app_id": "",
  "v2": true,
  "proxies": [
    {
      "path": "/api",
      "proxyUrl": "http://xxxxxxxxx"
    }  
  ]
}
  this.http.post('/api'+"username="+username+"&password="+password)
    .map(res =>res.json())
    .subscribe(data => {
      this.data = data;
    })
9 Likes