
Untitled
By: a guest on
May 16th, 2012 | syntax:
None | size: 0.62 KB | hits: 10 | expires: Never
global {
datasource ebaySearch <- "http://svcs.ebay.com/services/search/FindingService/v1?SECURITY-APPNAME=bradodas-8179-459a-b0e6-aa406d2e17e9&OPERATION-NAME=findItemsByKeywords&SERVICE-VERSION=1.0.0&RESPONSE-DATA-FORMAT=JSON&REST-PAYLOAD&paginationInput.entriesPerPage=7&";
.
.
.
}
rule eBay_Search is active {
select when pageview "^http://(?:www|search).(?:bing|google|yahoo).com/.*(?:search|#hl|#socal|webhp).*(?:&|\?)(?:p|q)=(.*?)(:?&|$)" setting (searchTerm)
foreach datasource:ebaySearch("keywords="+searchTerm).pick("$..item") setting (item)
pre {
.
.
.
}
}