Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to work on classification of content in comments of certain blogs. The application need to classify content whether it is spam or not spam.

Can anyone please help me regarding this. Like how I need to proceed, are there any existing libraries, etc.

share|improve this question
2  
Have you googled on the topic? Found anything at all? Hint: one possible approach is a bayesian filter. – Joachim Sauer Mar 7 '11 at 7:28
We need context: What programming language do you want to use? What background do you have? – Yuval F Mar 7 '11 at 7:34
Hi Yuval, I am comfortable using Java and PHP. So, I wish to implement the spam filter using neither of them. – funnyguy Mar 7 '11 at 9:51

3 Answers

up vote 3 down vote accepted

Give Askimet a try, They have libraries for all types of systems including general systems:

Akismet is a hosted web service that saves you time by automatically detecting comment and trackback spam. It's hosted on our servers, but we give you access to it through plugins and our API.

Example Usage:

$APIKey = 'aoeu1aoue';
$MyBlogURL = 'http://www.example.com/blog/';

$akismet = new Akismet($MyBlogURL ,$APIKey);
$akismet->setCommentAuthor($name);
$akismet->setCommentAuthorEmail($email);
$akismet->setCommentAuthorURL($url);
$akismet->setCommentContent($comment);
$akismet->setPermalink('http://www.example.com/blog/alex/someurl/');

if($akismet->isCommentSpam())
{
   // store the comment but mark it as spam (in case of a mis-diagnosis)
}else
{
   // store the comment normally
}
share|improve this answer
Hi Robert, thanks for the answer. Yes, I have tried using the Aksimet API's but I want to implement this classifier from the scratch. So, if you could suggest me any of such libraries, it would be helpful for me. – funnyguy Mar 7 '11 at 9:54

well I guess you should go with FLASH commenting system since it only makes sense that the spammers can't read flash so I guess you are safest with something like flexi comments or something

share|improve this answer
On the long term, a server side system is pretty much the only solution. – Remy Vanherweghem May 29 '11 at 22:13

I really think if you want to prevent spam from your website you should think about FLASH or even Silverlight. Although we as programmers have had a kneejerk reaction: if it is microsoft its evil, but come to think of these technologies give us the edge!

You don't have to worry about spam if you have your comments section in Flash or Silverlight.

share|improve this answer
1  
Not true, making the website use flash or silverlight we only stop the spammers until enough other websites do the same - then the spammers will find a way! – Ian Ringrose May 29 '11 at 21:56
2  
for the time being I think flash or silverlight is the safest bet! – martha mendis May 29 '11 at 21:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.