remove reject of the headets

This commit is contained in:
Eudes Inácio
2023-10-25 09:08:49 +01:00
parent f92cdc5816
commit 97d86455cf
17 changed files with 108 additions and 71 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ export class HttpService {
constructor(private http:HttpClient) { }
post(serviceName:string, data:any){
const headers = new HttpHeaders({'rejectUnauthorized': environment.rejectUnauthorized });;
const headers = new HttpHeaders();;
const options = {header: headers, withCredentials: false};
const url = environment.apiChatUrl+serviceName;
const body = {"user": "admin","password": "tabteste@006"};