Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: Online Daten abrufen
8. Okt 2015, 00:26
Eine Abfrage geht z.B. so
Delphi-Quellcode:
program dp_186866;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
IdHTTP;
procedure Main;
var
http : TIdHTTP;
resultStr: string;
begin
http := TIdHTTP.Create( nil );
try
resultStr := http.Get( ' http://jsonplaceholder.typicode.com/posts/1' );
finally
http.Free;
end;
Writeln( resultStr );
end;
begin
try
Main;
except
on E: Exception do
Writeln( E.ClassName, ' : ', E. Message );
end;
ReadLn;
end.
und liefert:
Code:
{
"userId": 1,
"id": 1,
"title": "sunt aut facere repellat provident occaecati excepturi optio reprehenderit",
"body": "quia et suscipit\nsuscipit recusandae consequuntur expedita et cum\nreprehenderit molestiae ut ut quas totam\nnostrum rerum est autem sunt rem eveniet architecto"
}
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
|
|
Zitat
|