Whenever http request (using rxjs) is made from a real device at that time origin and the referrer received into service is undefined.
Http request does not work as expected from real device.
import { Injectable } from '@angular/core';
import { Http } from '@angular/http';
@Injectable()
export class DbcallService {
constructor(private _http: Http) {}
getData() {
var url = 'https://jsonplaceholder.typicode.com/posts';
this._http.get(url).subscribe(data => {
console.log(data);
});
}
}
You have to change it as shown below.
your-provider.ts
When you called it, you have to do like below.
my-page.ts