Hello, I need to check the url against Google list of dangerous sites, how I do that for windows application ?
I will use Delphi.
thanks
Hello, I need to check the url against Google list of dangerous sites, how I do that for windows application ?
I will use Delphi.
thanks
This site has information about the Google Safe Browsing API, which presumably will give you information about the list of malware sites.
http://code.google.com/apis/safebrowsing/developers_guide.html
var
myString : string;
begin
myString := IdHTTP1.Get('http://www.google.com');
Memo1.Lines.Add(myString);
end;
you can use response text