معرفی شرکت ها


django-google-integrations-0.0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Integrate Google OAuth in your Django Rest-framework project
ویژگی مقدار
سیستم عامل -
نام فایل django-google-integrations-0.0.3
نام django-google-integrations
نسخه کتابخانه 0.0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Primedigital Global
ایمیل نویسنده backend@primedigital.tech
آدرس صفحه اصلی https://github.com/PrimedigitalGlobal/django-google-integration
آدرس اینترنتی https://pypi.org/project/django-google-integrations/
مجوز MIT License
Django Google Integrations ============================== Django Google Integrations is a package that allows integrating Google OAuth into your Django application. It is build as a thin wrapper around the [google-auth-oauthlib](https://github.com/googleapis/google-auth-library-python-oauthlib). You can view the full documentation at https://PrimedigitalGlobal.github.io/django-google-integrations/ ## Features - Provides following APIs: - Authorization URL API: - It generates google `authorization-url` which redirects user to Google's Authorization Server to request consent from resource owner. - Authorize Web API: - Exchange authorization code for access token. - Talk to resource server with access token and fetch user's profile information. - Authorize IOS Token API: - Verifies an ID Token issued by Google's OAuth 2.0 authorization server. - Fetch user details from decoded token. ## Dependencies - Python >= 3.6 - Django >= 2.2.17 - djangorestframework >= 3.10.2 - google-api-python-client >= 2.9.0 - google-auth-httplib2 >= 0.1.0 - google-auth-oauthlib >= 0.4.1 ## Setup You can install the library directly from pypi using pip: ``` $ pip install django-google-integrations ``` [Generate Google Client Config](https://cloud.google.com/docs/authentication/end-user#creating_your_client_credentials) Edit your settings.py file: ``` INSTALLED_APPS = ( ... "django_google_integrations" ) # Django Google Integrations Config GOOGLE_CONFIG = { "CLIENT_CONFIG_JSON": "[Google Client Config Json]", "CLIENT_ID": "[Google Client ID]", "CLIENT_SECRET": "[Google Client Secret]", "SERVICE_ACCOUNT_SCOPES": [ "openid", "https://www.googleapis.com/auth/userinfo.email", "https://www.googleapis.com/auth/userinfo.profile", ], "REDIRECT_URI": "http://localhost:3000/google/auth/callback", "RESPONSE_HANDLER_CLASS": "example.testapp.google_response_handler.GoogleSigninResponseHandler", } ``` Create Response Handler Class and update path in `GOOGLE_CONFIG` ``` from django_google_integrations.services import GoogleResponseHandler class GoogleSigninResponseHandler(GoogleResponseHandler): def handle_fetch_or_create_user(self, flow, google_user_data): email = google_user_data.get("email", None) user = get_user_by_email(email) is_created = False if not user: user_dict = { "first_name": google_user_data.get("given_name", ""), "last_name": google_user_data.get("family_name", ""), "password": None, } user = create_user_account(email, **user_dict) is_created = True extra_context = {"is_created": is_created} return user, extra_context def generate_response_json(self, user, extra_context): response = AuthUserSerializer(user) return response.data ``` NOTE: - `AuthUserSerializer` used in above ref. could be created as per app's functionality and contain fields which needs to be sent in response of authorization. - Following service methods are used in above code ref. which could be created as per app's functionality: - `get_user_by_email` - `create_user_account` Update URLs ``` from django_google_integrations.apis import GoogleAuthViewSet default_router = routers.DefaultRouter(trailing_slash=False) default_router.register("auth/google", GoogleAuthViewSet, basename="google-auth") ``` ## Code of Conduct In order to foster a kind, inclusive, and harassment-free community, we have a code of conduct, which can be found [here](CODE_OF_CONDUCT.md). We ask you to treat everyone as a smart human programmer that shares an interest in Python and Django Google Integrations with you.


نیازمندی

مقدار نام
>2.8.0 google-api-python-client
>=0.0.4 google-auth-httplib2
>0.4.0 google-auth-oauthlib


نحوه نصب


نصب پکیج whl django-google-integrations-0.0.3:

    pip install django-google-integrations-0.0.3.whl


نصب پکیج tar.gz django-google-integrations-0.0.3:

    pip install django-google-integrations-0.0.3.tar.gz