Reputation: 223
Is it possible to turn a facebook page to android app.To show new posts and send push notification each time a new post is posted ?? Please tell me where to start
Upvotes: 0
Views: 2319
Reputation: 21
You can try use service page application. https://pageapplication.com
You can create free native android app with only your facebook page wall. if you like push notification you will need to chose some subscription.
Upvotes: 1
Reputation: 6476
EDIT:
To answer that question. You will first will have to create a server.
Then on your app you will have to send AJAX queries to your server and get response back.
That is the only way you can go about it. So first I would suggest you set up a server. You can use Spring3 MVC if you want to stick to Java.
After you see that Server works, just write a simple app and try sending AJAX queries.
You can use Gson library to parse and create JSON objects that you can send back and forth.
Best of luck, seems like a very confusing and tough project.
Upvotes: 0