文法を覚えたてのpythonを使って実験してみたいのですが、エラーの意味が理解できずにいます。どなたか、ご教示いただければ幸いです。
前提・実現したいこと
PythonからGoogleドライブへファイルのアップロード、ダウンロードをしてみたい。
■■な機能を実装中に以下のエラーメッセージが発生しました。
該当のソースコード
Python 3.8.3
その1:https://news.mynavi.jp/article/zeropython-16/
その2:https://news.mynavi.jp/article/zeropython-17/
をやってみていますが、エラーが出ていてその意味が理解できません。
IDなどは書き換えていますが、それ以外のソースはコピペです。
試したこと
Anaconda Prompt(anadonda3)を使って実行しました。
当初、ログ1のようなエラーが出ていて、'client_secrets.json'がどこにあるのかわからず、googleのダッシュボードにそれらしい、jsonファイルが見つかったので、とりあえず持ってきて実験してみた結果が、ログ2のエラーです。(ログ1が改善した結果がログ2なのかどうかもよくわからないです)
発生している問題・エラーメッセージ
#ログ1(エラー含む)
raise InvalidClientSecretsError('Error opening file', exc.filename,
oauth2client.clientsecrets.InvalidClientSecretsError: ('Error opening file', 'client_secrets.json', 'No such file or directory', 2)
File "GoogleDrivetest.py", line 6, in <module>
gauth = GoogleAuth()
File "C:<中略>\auth.py", line 176, in init
ValidateSettings(self.settings)
File "C:<中略>\settings.py", line 156, in ValidateSettings
_ValidateSettingsStruct(data, SETTINGS_STRUCT)
File "C:<中略>\settings.py", line 171, in _ValidateSettingsStruct
_ValidateSettingsElement(data, struct, key)
File "C:<中略>\settings.py", line 213, in _ValidateSettingsElement
_ValidateSettingsElement(data, struct, reqkey)
File "C:<中略>\settings.py", line 197, in _ValidateSettingsElement
raise InvalidConfigError('Setting %s should be type %s' % (key, data_type))
pydrive.settings.InvalidConfigError: Setting client_config should be type <class 'dict'>
#ログ2(エラー含む)
(base) C:[後略] > python GoogleDrivetest.py
Go to the following link in your browser:
https://accounts.google.com/o/oauth2/auth?client_id= <後略>
Enter verification code: <略>
Traceback (most recent call last):
File "C:<中略>\anaconda3\lib\site-packages\pydrive\auth.py", line 508, in Authenticate
self.credentials = self.flow.step2_exchange(code)
File "C:<中略>\anaconda3\lib\site-packages\oauth2client_helpers.py", line 133, in positional_wrapper
return wrapped(*args, **kwargs)
File "C:<中略>\anaconda3\lib\site-packages\oauth2client\client.py", line 2089, in step2_exchange
raise FlowExchangeError(error_msg)
oauth2client.client.FlowExchangeError: invalid_grantMalformed auth code.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "GoogleDrivetest.py", line 7, in <module>
gauth.CommandLineAuth()
File "C:<中略>\anaconda3\lib\site-packages\pydrive\auth.py", line 125, in _decorated
self.Auth(code)
File "C:<中略>\anaconda3\lib\site-packages\pydrive\auth.py", line 495, in Auth
self.Authenticate(code)
File "C:<中略>\anaconda3\lib\site-packages\pydrive\auth.py", line 510, in Authenticate
raise AuthenticationError('OAuth2 code exchange failed: %s' % e)
pydrive.auth.AuthenticationError: OAuth2 code exchange failed: invalid_grantMalformed auth code.
(base) C:[後略] >
宜しくお願い致します。
あなたの回答
tips
プレビュー