views:

453

answers:

3

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

+4  A: 

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

Jason Hall
MANY THANKS ImJasonH
william
I cant make different tags , I get error about rate
william
what you suggest to use from components to make the http request from Delphi Thanks
william
A: 
var
  myString : string;
begin
  myString := IdHTTP1.Get('http://www.google.com');
  Memo1.Lines.Add(myString);
end;

you can use response text

drorhan
A: 

oh Indy !, ok thanks drorhan

Welliam
Welcome to Stack Overflow. What you posted here is not an *answer* to the question, so it does not belong here in the answer section. You probably should have posted this as a *comment* to Drorhan's answer. You couldn't, though, because you need at least 50 reputation points before you can post comments on pages you didn't create. I suspect you are actually William, though. You can use the "contact us" link at the bottom of this page to ask an administrator to merge your two accounts into one so you get credit for your other questions.
Rob Kennedy