I have a little problem, I can't get the data via the link web
I use Angular5
ratp.service.ts
getDatas(){
const url = "https://data.ratp.fr/explore/dataset/liste-des-commerces-de-proximite-agrees-ratp/api/?disjunctive.code_postal&sort=code_postal&refine.tco_libelle=Le+Narval";
const headers = new HttpHeaders()
.append('Content-Type', 'application/json')
.append('Access-Control-Allow-Origin', '*')
.append('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept, authorization,Client-Security-Token')
.append('Access-Control-Allow-Methods', 'GET, PUT, POST, PATCH, DELETE, OPTIONS');
return this.http.get<any>(url,{headers} ).pipe(map(res => console.log(res)));
}
app.component.ts
test(){
this.ratp.getDatas().subscribe(res => res);
}
app.component.html
<button (click)="test()">Click</button>