I am trying to use org.apache HttpClient and Facebook-API to create a server application. It has to automatically login to facebook using the username and password provided into a configuration file.
In this application I know the application ID, the API_KEY and the SECRET. I also have, as I said, the username and the password.
For obvious reason (I have no user interface) I cannot use any integrated browser in my application. My application should simply create a post on the user account wall when it is called, so basically when the application runs I have to perform the following steps:
- Login with the user credentials
- Post the message on the wall
- disconnect
At the moment I am facing the very first problem: the automatic login. I read, looking on the web, that on Facebook the login can be done ONLY through a manual user action. I tried also to simulate a browser through the HttpClient of the org.apache library but I am always getting lost in some point.
So my first question is: - Is it possible to automatically login through that kind of application? - If the answer to the first question is yes, can someone provide some simple and clear tutorial on how to do it?
Thank you very much Charlie