Registriert seit: 30. Mai 2005
Ort: Emden
42 Beiträge
Delphi 10.3 Rio
|
AW: TRestRequest mit JSON im Body
25. Feb 2020, 15:47
Benutz mal AddBody statt AddParameter
Funktioniert leider auch nicht...
Code:
try
slCustomerIds := TStringlist.Create;
slCustomerIds.Add('{');
slCustomerIds.Add('"username" : "ag- api-contechnet",');
slCustomerIds.Add('"password" : "xxxxx",');
slCustomerIds.Add('"customerIds" : ["xxxxx"]');
slCustomerIds.Add('}');
finally
[B] RESTRequest.AddBody(slCustomerIds.Text,ctApplication_Json);[/B]
slCustomerIds.Free;
end;
Georg Reimann ------------------------------------------------------
Sicher ist nur eines, dass nichts sicher ist...
|