pythonを使って取得したデータをスプレッドシートに載せたいのですが、credentials = ServiceAccountCredentials.from_json_keyfile_name(credentials_path, scope)のところでエラーを出してしまいます。お手上げでどうしていいのか分からないので、どなたか教えてください。
python3
1from oauth2client.service_account import ServiceAccountCredentials 2 3scope = ['https://spreadsheets.google.com/feeds','https://www.googleapis.com/auth/drive'] 4 5# json パス指定 6credentials_path = os.path.join(os.path.expanduser('~'),'path', 'to', '秘密鍵.json') 7 8credentials = ServiceAccountCredentials.from_json_keyfile_name(credentials_path, scope)
python3
1Traceback (most recent call last): 2 File "/python/script/FOD.py", line 23, in <module> 3 credentials = ServiceAccountCredentials.from_json_keyfile_name(credentials_path, scope) 4 File "/python/script/.pyenv/versions/3.7.3/lib/python3.7/site-packages/oauth2client/service_account.py", line 224, in from_json_keyfile_name 5 revoke_uri=revoke_uri) 6 File "/python/script/.pyenv/versions/3.7.3/lib/python3.7/site-packages/oauth2client/service_account.py", line 170, in _from_parsed_json_keyfile 7 creds_type = keyfile_dict.get('type') 8AttributeError: 'list' object has no attribute 'get'
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。