Rest Request Failed


Rest Request Failed

Im getting a request failed error after make a rest call, i'm using rest component and Delphi 10.2, this error only happen on Android, on win32 all is fine.

lClientModule := TCM.Create(nil);
try
lClientModule.RESTClient1.BaseURL := (sBASE_URL);
lClientModule.RESTRequest1.Resource := Format('fEstatusAutorizacion/%s/%d/%d', ['A',10, 20]);
lClientModule.RESTRequest1.Execute;
finally
lClientModule.Free;
end;

Comments

Post a Comment