Metadata-Version: 2.1
Name: afex-sso
Version: 0.0.41
Summary: For integrating sso
Home-page: UNKNOWN
Author: AFEX NIGERIA
Author-email: it@afexnigeria.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: dev
License-File: LICENSE


# AFEX SSO (DJANGO)




## simple integration (usage)

instantiate the SSO class


      from AFEX_SSO import SSO
      validate = SSO(sp_api_key, sp_hash_key, session_key)

      def get_user_details(View):
        get_user = validate()['data'].get('user')
        '''
            # other codes
        '''

## Keys
    
- sp_api_key: service provider api key
- sp_hash_key : hashed key with api key ,secret key and an idempotency key (random values or timestamps)
- session_key : sent from the service provider client after successful authentication on the sso 

## SETTINGS

- set the sso url on settings.py as **SSO_URL**

    SSO_URL = ""

Sample Response

    {
    "responseCode": "100",
    "data": {
        "session_identifier": "SES_2c73ff51cfe5c5a68fc58934c9be3b",
        "user": {
            "email": "togunbiyi@afexnigeria.com"
        }
    },

    "message": "Successfully Retrieved"

    }



