0

我试图弄清楚如何使用 stubhub 列表目录服务请求页面提供的 HTTP 请求 URL:http: //stubhubapi.stubhub.com/index.php/Anatomy_of_a_Listing_Catalog_Service_HTTP_Request

我查看了示例 HTTP 请求中的示例,为什么会这样:http ://www.stubhub.com/listingCatalog/select/?q=%2B+stubhubDocumentType%3Agenre%0D%0A%2B+leaf%3Atrue%0D %0A&version=2.2&start=0&rows=10&indent=on 返回它返回什么?

如何修改此链接以仅返回,例如在芬威克公园的洋基队比赛?

4

1 回答 1

0

根据Stubhub API Reference,示例网址:

http://www.stubhub.com/listingCatalog/select/?q=%2B+stubhubDocumentType%3Agenre%0D%0A%2B+leaf%3Atrue%0D%0A&version=2.2&start=0&rows=10&indent=on

是以下 SOLR 搜索查询,转换为 URL 查询字符串:

+stubhubDocumentType:流派

+叶子:真

这实际上看起来更像

+stubhubDocumentType:流派\n+leaf:true

最后编码为 URL 查询

%2B+stubhubDocumentType%3Agenre%0D%0A%2B+leaf%3Atrue%0D%0A

http://www.stubhub.com/listingCatalog/select/是端点

最后的参数指定选项

对于 Fenwick park 的 Yankees,您可能想要搜索位于 Fenwick park 并在描述中包含 New York Yankees 的Stubhub Events 。

您应该看一下这个PHP 示例,其中包含如何搜索特定搜索查询的搜索。

要轻松访问 Stubhub Api,请查看Ruby Gem,它是 API 的良好包装器。

于 2013-07-23T04:51:30.313 回答