使用谷歌搜索api无限搜索dotnet

时间:2013-04-06 15:15:02

标签: vb.net google-api

我刚刚开始熟悉谷歌搜索API,这真的是一件好事,我可以使用它很多。但是当我在visual basic中测试它时,我发现它是有限的,你每天不能搜索超过100个查询。有没有办法搜索更多?

这是我的代码:

    Dim client As New Google.API.Search.GwebSearchClient("http://www.google.com")
    Dim results As IList(Of Google.API.Search.IWebResult) = client.Search("site:uploadbaz.com " + TextBox1.Text, 5)

    For Each result As IWebResult In results
            ListBox1.Items.Add(result.Url)
            ListBox2.Items.Add(result.Content)
    Next

0 个答案:

没有答案