jkogut commented on issue #30995: URL: https://github.com/apache/superset/issues/30995#issuecomment-2493546050
@amotl actually I was wrong, correct SECRET_KEY only allowed me to get access token but cannot proceed further with getting chart list for instance: ``` def get_chart_list(): headers = { 'Authorization': f"Bearer {get_bearer_token()}" } response = requests.get(f"{base_url}/chart/", headers=headers, verify=False) return response.json() ``` problem observed as reported on Superset 3.1.3, and fixed as recommended with installing PyJWT==2.9.0. So still looks like new PyJWT 2.10.0 release can cause some problems with Superset API access. -- 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 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