mirror of
https://e.coding.net/circlecloud/AliKeywordSearch.git
synced 2025-11-24 21:36:05 +00:00
中文阿里搜索是个坑....
This commit is contained in:
@@ -50,7 +50,6 @@ namespace EnAliKeywordSearch
|
||||
url = String.Format("http://www.alibaba.com/products/F0/{0}/{1}.html", HttpUtility.UrlEncode(key), i);
|
||||
else
|
||||
url = String.Format("http://s.1688.com/selloffer/offer_search.htm?keywords={0}&beginPage={1}", HttpUtility.UrlEncode(key), i);
|
||||
|
||||
string htmldoc = httpHelper.Get(url);
|
||||
if (string.IsNullOrEmpty(htmldoc))
|
||||
{
|
||||
@@ -59,7 +58,8 @@ namespace EnAliKeywordSearch
|
||||
maybe = true;
|
||||
continue;
|
||||
}
|
||||
if (htmldoc.Contains(HttpUtility.HtmlEncode(cpy)))
|
||||
string encodecpy = HttpUtility.HtmlEncode(cpy);
|
||||
if (htmldoc.Contains(encodecpy))
|
||||
{
|
||||
pageinfo = "第" + i + "页";
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user