I am developing a web application in which one of the tasks is to capture all the facebook status updates/post for a particular user & save it as a new item in the web application. Of course only legitimate facebook posts will be imported for the authenticated users.
This would be similar to a twitter's app for facebook. I have connected my twitter account with my facebook account, and whenever I tweet, it is posted to my facebook, almost instantly. I think I provided my credentials only once, so similarly I would like to minimize the number of times a user has to provide it's credentials.
I am reading up on facebook documentation esp. authentication post & some other resources. But it will be great if I can get some advice on how best to tackle this, what pitfalls to look for and/or links to some good tutorials.
One of the interesting things I noticed is that for actions that require usage of my app_id (facebook's api key equivalent) the request has to come from the domain of the site URL that was used for the registration but this will be troublesome since I always develop on my localhost & only push changes when the feature is complete. Any workarounds for this?
BTW I am using python/django on the backend.
Thanks a lot!