I'm trying to add the body to the HTTP GET request. But not able to add
I have tried with RequestOptions but it did not work.
For the mentioned code, POST Request is working but GET is not working
getlist(name : string) : Observable<Object[]> {
var body = {
"listname" : name
}
return this.http.post<any>("http:/regsd.com/api/lists/",body)
}