betodealmeida commented on issue #26452: URL: https://github.com/apache/superset/issues/26452#issuecomment-3133148339
I can't repro this with a personal access token. Can someone who has a service account help me troubleshoot? Run this Python script: ```python from shillelagh.backends.apsw.db import connect if __name__ == "__main__": connection = connect( ":memory:", adapter_kwargs={ "gsheetsapi": { "service_account_file": "/path/to/your/service_account.json", } }, ) cursor = connection.cursor() SQL = """ SELECT * FROM "https://docs.google.com/spreadsheets/d/1_rN3lm0R_bU3NemO0s9pbFkY5LQPcuy1pscv8ZXPtg8/edit#gid=1648320094" """ for row in cursor.execute(SQL): print(row) ``` -- 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