architmmmec opened a new issue, #24091:
URL: https://github.com/apache/superset/issues/24091

   OAUTH_PROVIDERS = [
       {
           'name': 'authn',
           'token_key': 'access_token',
           'icon': 'fa-address-card',
           'remote_app': {
      
               'client_id':'os.environ["CLIENT_ID"],
               'client_secret': os.environ["CLIENT_SECRET"],
               'request_token_params': {
                   'scope': 'user.profile'
               },
               'request_token_url': None,
               'access_token_method': 'POST',
               'base_url': AUTHN_URL,
               'access_token_url': AUTHN_URL + '/oauth/token',
               'authorize_url': AUTHN_URL + '/oauth/authorize'
           }
       }
   
   getting this:
   2023-05-17 16:15:35 DEBUG urllib3.connectionpool Starting new HTTPS 
connection (1): service.authn-prod.fkcloud.in:443
   2023-05-17 16:15:35 DEBUG urllib3.connectionpool 
https://service.authn-prod.fkcloud.in:443 "POST /oauth/token HTTP/1.1" 200 None
   
   When I logged the request body and headers I am able to get the correct 
value. Following are the versions.
   
   apache-superset==2.1.0
   authlib==0.15.5
   Flask-OAuthlib==0.9.6
   requests-oauthlib==1.3.0
   
   Can someone help here


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org

Reply via email to