私のプロジェクトで私はチェックのためのPythonスクリプトを開発し、自動的に私のGoogleカレンダーに予定を作成しています。 最初に私がグーグルのdevのコンソールのOAuth、JSONファイルから作成し、私のスクリプトを認証し、実行します。Google APIのpythonの資格情報OAUTHサーバー - サーバー
SCOPES = 'https://www.googleapis.com/auth/calendar'
CLIENT_SECRET_FILE = 'client_id.json'
APPLICATION_NAME = 'Google Calendar API Python Quickstart'
def get_credentials():
home_dir = os.path.expanduser('~')
credential_dir = os.path.join(home_dir, '.credentials')
if not os.path.exists(credential_dir):
os.makedirs(credential_dir)
credential_path = os.path.join(credential_dir,
'calendar-python-quickstart.json')
store = Storage(credential_path)
credentials = store.get()
if not credentials or credentials.invalid:
flow = client.flow_from_clientsecrets(CLIENT_SECRET_FILE, SCOPES)
flow.user_agent = APPLICATION_NAME
if flags:
credentials = tools.run_flow(flow, store, flags)
else: # Needed only for compatibility with Python 2.6
credentials = tools.run(flow, store)
print('Storing credentials to ' + credential_path)
return credentials
credentials = get_credentials()
http = credentials.authorize(httplib2.Http())
service = discovery.build('calendar', 'v3', http=http)
私は私のローカルマシンから、それを実行すると、すべてが行われますが、私はAWSラムダを使用してスクリプトおよびすべての依存関係をアップロードするとき私はそれをサーバーrespondeテストするときに関数は:
{ "errorMessage": "module initialization error" }
START RequestId: 2244eefe-e3dd-11e7-a0ce-93ed40a4fa13 Version: $LATEST module initialization error: [Errno 30] Read-only file system: '/home/sbx_user1060'
を私はこれが原因で認証方法店で、ローカルマシン上のJSON資格ファイルをretriveと思いますが、どのように私の代わりに、サーバーのサーバーから認証し、実行コードすることができますクライアント - サーバ?あなたのコードの資格情報の一部で