django-social-auth on google app engine -



django-social-auth on google app engine -

i'm having problem getting django-social-auth work django app i'm deploying on google's app engine using djangoappengine , django-nonrel.

i'm noob @ , quite complex me ! started django-nonrel template using video , though login page, gives me error - incorrect authentication service. if not define consumer key , secret google-oauth2, invalid client error on google's page.

when run test social_auth, getting failed(errors=9) issue ensure backend testcase gets cached. , self.asserttrue(self.user) assertionerror: none not true errors.

could please tell direct me should next work? ton!

i fell problem , think if have solved problem, helpful others if reply exists.

go httplib2 homepage , download latest version. extract archive , move inner httplib2 folder (found within python2 sub-folder), in projects main folder. add together 'httplib2', in installed_apps section, on top of social_auth's dependencies.

for illustration here installed_apps:

installed_apps = ( 'django.contrib.contenttypes', 'django.contrib.auth', 'django.contrib.sessions', 'djangotoolbox', 'autoload', 'dbindexer', 'httplib2',# these 4 'openid',# u need 'oauth2',# integrate social_auth plug 'social_auth',# in gae project 'myapp', 'djangoappengine', )

note: have place in projects folder: openid, oauth2 , social_auth, because there no way afaik can install them on gae.

django google-app-engine django-socialauth

Comments

Popular posts from this blog

delphi - blogger via idHTTP : error 400 bad request -

c++ - compiler errors when initializing EXPECT_CALL with function which has program_options::variables_map as parameter -

How do I check if an insert was successful with MySQLdb in Python? -