Need a java code to click like button on the link below one by one.
http://www.facebook.com/addpage
Can someone help ??
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Need a java code to click like button on the link below one by one.
http://www.facebook.com/addpage
Can someone help ??
My suggestion is to try writing the code yourself, and if stuck come back. Robot can be used to have a Java program click another program's buttons.
I've dealt with similar problems. What your program have to do is:
1. Login to FB
2. Send requests, correspondent to the "Like" button clicks.
I don't know, whether FB has it's own API for Java developers, but if it does than your task may be as trivial as reading documentation to that API.
If there's no API for FB, than you'll have to implement the login and "like" button click process by yourself. I recommend to use some traffic analyser (such as HttpFox addon for Firefox, which I find to be pretty convenient) in order to observe, how does these processes work. And than you use some Java API for working with the network (either standard one, or you may find some more convenient alternatives over the Internet) in order to repeat these processes in automatic mode.