Is it possible and how add poDoNotEncode to TRUE from code in delphi. eg.
with RESTRequest1.Params.AddItem do
begin
Kind:= TRESTRequestParameterKind.pkHTTPHEADER;
name:='Authorization';
value:= l_authorization;
//set poDoNotEncode to TRUE here
end;
Use the TRESTRequestParameter.Options
property:
with RESTRequest1.Params.AddItem do
begin
Kind := TRESTRequestParameterKind.pkHTTPHEADER;
Name := 'Authorization';
Value := l_authorization;
Options := Options + [TRESTRequestParameterOption.poDoNotEncode];
end;