Skip to main content

For integrating sso

Project description

AFEX SSO (DJANGO)

Simple Integration (usage)

instantiate the SSO class

  from AFEX_SSO import SSO
  sso = SSO()

  def get_user_details(View):
    sso_instance = sso.check_credentials(session_key)
    get_user = sso_instance['data'].get('user')
    '''
        # other codes
    '''

   def logout(View):
       # get user email
        email = " "
        signout = sso.sign_out(email)
    '''
        # other codes
    '''

Keys

  • session_key : sent from the service provider client (frontend) after successful authentication on the sso

SETTINGS

  • set the sso details on settings.py as shown below
    • SSO_URL = ""
    • SSO_API_KEY = ""
    • SSO_SECRET_KEY = ""

Sample Response

{
"responseCode": "100",
"data": {
    "session_identifier": "SES_2c73ff51cfe5c5a68fc58934c9be3b",
    "user": {
        "email": "example@africaexchange.com",
        "first_name": "Ayodeji",
        "last_name": "Balogun",
        "photo": null,
        "tribe": null,
        "designation": "Software Developer",
        "email_aliases": [
            "example@afexnigeria.com",
        ]
    }
},

"message": "Successfully Retrieved"

}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

afex-sso-0.0.62.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

afex_sso-0.0.62-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page