I am trying to setup this repo Angular 2 Universal + WordPress REST API: https://github.com/jussikinnula/angular2-universal-wordpress
In the get function there is a search /wp-json/wp/v2/find?path= has that been removed from WordPres rest api? I trying to do a search on my web and get a 404 error
Path to my url
http://ecommerce-ux.london/wp-json/wp/v2/find?path=
Get request with find
get(path: string) {
if (path === "") {
path = "header";
}
return this.apiService.get("/wp-json/wp/v2/find?path=" + path)
.map(content => new Content(content))
.do(content => this.setMeta(content))
.catch(error => Observable.of(new Content({})));
}