Hi,
I'm trying to integrate with Safe Browsing v4 and can successfully call threatListUpdates.fetch and get raw hashes prefixes.
After decoding them from Base64 and splitting by parts, I get something like (prefix size length is 4, so 8 symbols in string representation) [00004c61, 00008245, 00009177, 00009c76, 0000a7c1
So, my expectation is that if I call fullHashes:find
{
"client": {
"clientId": "clientId",
"clientVersion": "1.0.0"
},
"clientStates": ["Cg0IARAGGAEiAzAwMTABEK5FGgIYCOSGowU="],
"threatInfo": {
"threatTypes": ["MALWARE"],
"platformTypes": ["WINDOWS"],
"threatEntryTypes": ["URL"],
"threatEntries": [
{"hash": "00004c61"}
]
}
}
than SB API should return full hash, but it just returns
{
"negativeCacheDuration": "300.000s"
}
{
"negativeCacheDuration": "300.000s"
}
So, does fullHashes:find works at all? Can it be used in production code or it's not stable?
Thanks,
Nikolay