如何使用bash中的curl向google safebrowsing发送帖子请求?

时间:2013-06-27 13:13:57

标签: bash curl

我有一个非常大的域列表,应该每天检查。我需要使用帖子请求。我正在使用这些说明https://developers.google.com/safe-browsing/lookup_guide#AcceptableUsage。但它不起作用,因此我收到错误400(错误请求)。

我正在使用此代码:

$ curl -k "https://sb-ssl.google.com/safebrowsing/api/lookup?client=api&apikey=hidden&appver=1.0&pver=3.01" -d "NUM=2" -d "URL=test.com ask.com"

1 个答案:

答案 0 :(得分:0)

这是你发送的尸体:

NUM=1&URL=test.com ask.com

这是你应该发送的身体

2
http://test.com
http://ask.com

你也许可以试试

curl -k "https://sb-ssl.google.com/safebrowsing/api/lookup?client=api&apikey=hidden&appver=1.0&pver=3.01" -d \
'2
http://test.com
http://ask.com'