Sign up using G + (Google+) using kiwi

I am working on some android application and want to add the functionality of Register for users.

Users must register using google + or Facebook . Any idea how to do this using python and kivy?

This link is great, but you need a little help from python developers.

+6
source share
1 answer

The answer to your question shows how to call the Google Play Services API to log in. To call the API from Python, you need to use a library called Pyjnius , which is mentioned in Kivy docs to wrap Android classes in a Python class.

You should be able to do something similar with the Facebook API after installing the Facebook SDK for Android . Some users have found problems integrating these SDKs into their Kivy projects with some discussions and solutions here .

+3
source

All Articles