I have a question in regard to Facebook notifications implemented in Django
For a project I have used FBIgnite, it's a php framework based on Codeigniter. It has some functions for Facebook, like "send a notification" on Facebook. I want to know if there's something like that for Django.
I did some research and found only something for auth, like django-facebook-connect, djanfo-socialauth, django-socialall etc.
I'm interested in using:
- Facebook authentication (only login & getting some data)
- Sending from my framework Facebook notifications. ex:
myfunc(fbid='', msg='');
Does anybody know something like this ?
Thank you very much !