Danke für Deinen Hinweis Valetin!
Ich habe durch etwas "rumprobieren" nun die Lösung einer erfolgreichen Anmeldung bei CakePHP mit
INDY Bordmittel herausgefunden.
Wenn jemand anders das mal braucht -> voila
Delphi-Quellcode:
Var
iDHTTP: TIdHttp;
jsonData, Response: String;
aUsername,aPassword : String;
begin
aUsername := 'FirstName.LastName@email.com';
aPassword := 'FictivePW0123455678';
IdHttp := TIdHttp.Create(nil);
iDHTTP.Request.BasicAuthentication := True;
iDHTTP.Request.Authentication := TIdBasicAuthentication.Create;
iDHTTP.Request.Authentication.Username := aUsername;
iDHTTP.Request.Authentication.Password := aPassword;
IdHTTP.Request.ContentType := 'application/json';
jsonData := 'http://myhomepage.de/somecommand/changed.json?date=1970-01-01 00:00:00';
Response := IdHttp.Get(jsonData);
IdHTTP.Free;
end;
LG Martin