I am new to Okta and SSO and doing a prototype to test using Okta as IDP. I setup an free developer account and trying a basic python web app. login page and welcome page.
using this library
from okta import authclient
my code looks like this
auth_client = AuthClient (base_url = ‘base okta dev url’, client_id = ‘my client id’, client_secret = ‘my secret’)
when I try to run my app = python sso.py
I get this error “cannot import authclient from okta”
thanks
any ideas as to how to get around this or am I doing something wrong.