3

我看到 yahoo yql 可以在 Web 服务中获取很多信息,这些信息非常有用。但是,当我在谷歌中搜索“Delphi yql”时。没有返回有用的信息。有没有关于如何使用Delphi发送请求并从yql获取结果的帮助和示例?非常感谢。

4

1 回答 1

5

YQL 是一种基于 HTTP 的协议。在 Delphi 中有很多使用 HTTP 的例子。这是一个使用 Indy 的TIdHTTP组件发送Yahoo 的示例 YQL 查询的例子

var
  YqlQuery: string;
  YqlResult: string;
  YqlResultCharset: string;
  YqlResultFormat: string;
  Url: string;
begin    
  YqlQuery := 'select * from geo.places where text="sunnyvale, ca"';
  YqlResultCharset := 'iso-8859-1'; // any valid IANA charset. YQL defaults to UTF-8
  YqlResultFormat := 'xml'; // can be either xml or json

  IdHTTP1.Request.ContentType := 'text/html';
  IdHTTP1.Request.Charset := YqlResultCharset;
  Url := 'http://query.yahooapis.com/v1/public/yql?q=' + TIdURI.ParamsEncode(YqlQuery) + '&format=' + YqlResultFormat;

  {
  Alternatively:

  IdHTTP1.Request.ContentType := '';
  IdHTTP1.Request.Charset := '';
  Url := 'http://query.yahooapis.com/v1/public/yql?q=' + TIdURI.ParamsEncode(YqlQuery + ' and charset="' + YqlResultCharset + '"') + '&format=' + YqlResultFormat;
  }

  YqlResult := IdHTTP1.Get(Url);
  // parse YqlResult as needed...
end;

有关详细信息,请参阅Yahoo 的文档

于 2013-04-26T01:40:19.673 回答