最近一直在使用IDHTTP,下面是一些關於 GET、POST 請求基本使用方法的代碼json
1、GET 請求app
1 procedure GetDemo; 2 var 3 IdHttp : TIdHTTP; 4 Url : string;//請求地址 5 ResponseStream : TStringStream; //返回信息 6 ResponseStr : string; 7 begin 8 //建立IDHTTP控件 9 IdHttp := TIdHTTP.Create(nil); 10 //TStringStream對象用於保存響應信息 11 ResponseStream := TStringStream.Create(''); 12 try 13 //請求地址 14 Url := 'http://dict.youdao.com/'; 15 try 16 IdHttp.Get(Url,ResponseStream); 17 except 18 on e : Exception do 19 begin 20 ShowMessage(e.Message); 21 end; 22 end; 23 //獲取網頁返回的信息 24 ResponseStr := ResponseStream.DataString; 25 //網頁中的存在中文時,須要進行UTF8解碼 26 ResponseStr := UTF8Decode(ResponseStr); 27 finally 28 IdHttp.Free; 29 ResponseStream.Free; 30 end; 31 end;
若是Get須要添加請求參數,則直接在地址後添加,各參數間用&鏈接yii
如:http://dict.youdao.com?param1=1¶m2=2spa
2、Post 請求code
1 procedure PostDemo; 2 var 3 IdHttp : TIdHTTP; 4 Url : string;//請求地址 5 ResponseStream : TStringStream; //返回信息 6 ResponseStr : string; 7 8 RequestList : TStringList; //請求信息 9 RequestStream : TStringStream; 10 begin 11 //建立IDHTTP控件 12 IdHttp := TIdHTTP.Create(nil); 13 //TStringStream對象用於保存響應信息 14 ResponseStream := TStringStream.Create(''); 15 16 RequestStream := TStringStream.Create(''); 17 RequestList := TStringList.Create; 18 try 19 Url := 'http://f.youdao.com/?path=fanyi&vendor=fanyiinput'; 20 try 21 //以列表的方式提交參數 22 RequestList.Add('text=love'); 23 IdHttp.Post(Url,RequestList,ResponseStream); 24 25 //以流的方式提交參數 26 RequestStream.WriteString('text=love'); 27 IdHttp.Post(Url,RequestStream,ResponseStream); 28 except 29 on e : Exception do 30 begin 31 ShowMessage(e.Message); 32 end; 33 end; 34 //獲取網頁返回的信息 35 ResponseStr := ResponseStream.DataString; 36 //網頁中的存在中文時,須要進行UTF8解碼 37 ResponseStr := UTF8Decode(ResponseStr); 38 finally 39 IdHttp.Free; 40 RequestList.Free; 41 RequestStream.Free; 42 ResponseStream.Free; 43 end; 44 end;
Post請求在網頁中多使用List形式提交參數。xml
不過在一些API中規定了POST的請求格式爲 JSON 格式或 XML,這是須要注意發起請求前須要先設置 ContentType 屬性,使用Stream方式提交對象
已上面代碼爲例:blog
提交 JSON 格式:IdHttp.Request.ContentType :='application/json';input
提交 XML 格式: IdHttp.Request.ContentType :='text/xml';string
如未按要求格式提交,通常會返回 HTTP 1.1 / 415