Azure Bing Web search fails with Query search

左心房为你撑大大i 提交于 2019-12-01 20:01:09

Not much into Java, but I've just got the same error with the implementation for Node.js, and the problem was that I forgot to add single quotes around the query. It should be something like:

...&Query='stackoverflow'

so after the URL encoding we have something like:

...&Query=%27stackoverflow%27

At least that worked for me.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!