TccHTTPRequest.Authentication

Parameter

: TccHTTPAuthentication;

Beschreibung

Zugriff auf das Authentication Request Objekt.

Beim Request werden diese Informationen in die entsprechenden Authorization Header umgesetzt.


Für AuthType sind folgende Werte möglich:

  • ccHAT_Basic
  • ccHAT_Bearer

Beispiel

HTTP.Request.Authentication.AuthType := ccHAT_Basic;
HTTP.Request.Authentication.Username := 'example';
HTTP.Request.Authentication.Password := 'TopSecret';
HTTP.Request.Authentication.AuthType := ccHAT_Bearer;
HTTP.Request.Authentication.Token := '123';