Regarding codes gluing django and facebook - django

I'm building a website using django and planning to connect it with facebook. I googled and found so many codes to do the job but don't know which one is good for me. I need facebook connect and new graph api support. Could anyone share me some experiences with codes below and advise me which one is good for me? (with some tips if possbible)
github.com/benbinary/django-facebookconnect
github.com/dickeytk/django_facebook_oauth
github.com/digvan/django_facebook_oauth
github.com/facebook/python-sdk
github.com/flashingpumpkin/django-socialregistration
github.com/ryanmark/django-facebookconnect
github.com/tschellenbach/Django-facebook
I would really appreciate it.

http://github.com/facebook/python-sdk is official Facebook Graph SDK from Facebook. So it's good for fetching/puting data from Facebook. It's doing it well, so you don't have to search for alternative.
Authentication is bit more problem. I was searching for library witch will match my needs, but not found it. So I wrote bit off code myself.
see also:
http://developers.facebook.com/docs/authentication/
http://developers.facebook.com/docs/api
http://developers.facebook.com/docs/reference/javascript/

Related

Facebook Graph API: getting started

Can someone explain to me how to start using the Facebook Graph API efficient? The thing is i created a new app at https://developers.facebook.com/apps but then i got so many questions:
-Do i really need to provide a privacy policy and a terms and conditions URL at this moment? I mean the app is hardly in development.
-Is the app review really that strict? For every permission i ask, i must provide a video to my app using that?
Thanks in advance.

sending a POST request with Google's C++ native client

Can someone give an example of how to send a POST request with Google's C++ native client? The question has been asked before, but Google's documentation is not very helpful (and in some cases non-existent). And yes, I have been scouring github for help, but to no avail.
Did you have a look at the NativeClient SDK's examples?
In the nacl_sdk\pepper_\examples\api\url_loader folder you'll find an example of how to use the URLLoader.

Ionic2 using a Generic Oauth2 provider

I have been trying to find information on how to use a generic oauth2 provider in Ionic2 but could not find anything useful. In most of the cases I can only see info for Facebook or Google but no info on how to use your own provider. Have anyone done this before? Or does anyone know any useful links? Thank you so much in advance.
After poking around some you've got a few choices. http://ionic.io/cloud#authentication looks promising though I've never played with it. Here's one which should give you a bit more control, https://github.com/nraboy/ng2-cordova-oauth
Further... there's nothing saying you need to use something specific to ionic2. Why not use any of the plethora of oauth libraries out there and wrap it in your own service to use with ionic's page nav?

Implementing Chat with us functionality in my Ruby on Rails website

I want to implement chat with functionality for my website. Not chat application which allows chatting among the users. User can chat to the website only. Exactly like Amcat livechat. How do I achieve this? Any suggestions please. I have googled a lot. But got only ideas and tutorials for chat application only.
Your best bet is probably to find an off-the-shelf solution that provides some kind of widget that you drop in to your site. Building this kind of thing yourself is usually a bad idea.

Can anybody comment on django-wapi?

Aside for a few user guides found at http://fi.am/en/tag/django/2/ I have not managed to find much about WAPI.
I was wondering if anyone has had an experience using WAPI and django to create a web api?
I'm a little intimidated by the amount of magic these frameworks seem to do.
Are there any other good alternatives to creating a web api in python?
Here is a decent guide to the django WAPI for building a restful API: http://fi.am/entry/building-a-website-api-with-django-part-2a-api-aut/