Removing "Authorize" Button in Okta Authentication

Hi,

Can we remove the “Authorize” button during Okta authentication and directly call the application?

I tried using the following approach:
result = oauth2.authorize (config.REDIRECT_URI,
config.SCOPE,
pkce=‘S256’
)
However, I encountered the following error:
AttributeError: ‘OAuth2Component’ object has no attribute ‘authorize’
We are currently using streamlit-oauth==0.1.14.

Could you please help resolve this issue?