0

我正在使用谷歌搜索 API 尝试从谷歌获取一些结果并将它们存储在列表框中。这工作正常,但是我想用我自己的语言(荷兰语)而不是默认语言(英语)进行搜索。

我尝试使用“dutch”、“nl”、“nl-NL”、language.dutch 但它似乎不起作用,我也搜索了很多但找不到正确的答案。

  Dim cl As New GwebSearchClient("www.google.nl")


        Dim rtnList As IList(Of IWebResult) = cl.Search(KEYWORD, LENGTH, LANGUAGE)

        For Each itm As IWebResult In rtnList
            ListBox1.Items.Add(itm.Url) '
        Next
4

1 回答 1

0

我不确定这是否是您正在寻找的,完全没有使用此 API 的经验,但也许这对您来说是一些信息:

Specific UI language - if you want to specify the language for the UI components (SearchControl, branding, etc...) instead of having it auto-detected then set "language" to the specific language code such as: en, es, zh-CN, pt-PT, and etc...

google.load("search", "1", {"language" : "en"});

这里

于 2013-01-23T17:39:23.410 回答