I am using Google Safe browsing Lookup api v4, but some url not detecting by api even it unsafe. My request data and request header like below:
$request_data = [ "client" => [ "clientId" => "#########", "clientVersion" => "1.0" ], "threatInfo" => [ "threatTypes" => ["MALWARE", "THREAT_TYPE_UNSPECIFIED", "SOCIAL_ENGINEERING", "UNWANTED_SOFTWARE", "POTENTIALLY_HARMFUL_APPLICATION"], "platformTypes" => ["ANY_PLATFORM"], "threatEntryTypes" => ["URL"], "threatEntries" => [ ["url" => "http://www.urltocheck1.org/"], ["url" => "http://www.urltocheck2.org/"], ["url" => "http://www.urltocheck3.com/"] ] ] ]; $request_headers = [ "Content-Type: application/json" ];
I am sending urls in bunch of 500 url in one request. Anyone can help me solved this issue? What is missing in my request or do anything else to detect unsafe url. Also I was try sending that unsafe url only in request but can't get it in response that it is unsafe.