2

我已经使用python函数创建了一个部署包,以使用AWS Lambda创建一个Google Drive文件夹。然后,我尝试测试它,我已经得到一个错误:AWS lambda函数错误

{ 
    "errorMessage": "main() takes from 0 to 1 positional arguments but 2 were given", 
    "errorType": "TypeError", 
    "stackTrace": [ 
    [ 
     "/var/runtime/awslambda/bootstrap.py", 
     249, 
     "handle_event_request", 
     "result = request_handler(json_input, context)" 
    ] 
    ] 
} 

我在我的.zip 2个主要文件。第一个文件包含main函数,另一个文件具有安全机制,另一个文件夹和文件是lib的。主命名lambda_function.py与代码文件:

from __future__ import print_function 

import httplib2 
import os 

from apiclient import discovery 
from oauth2client import client 
from oauth2client import tools 
from oauth2client.file import Storage 

try: 
    import argparse 

    flags=argparse.ArgumentParser(parents=[tools.argparser]).parse_args() 
except ImportError: 
    flags=None 

# If modifying these scopes, delete your previously saved credentials 
# at ~/.credentials/drive-python-quickstart.json 
SCOPES='https://www.googleapis.com/auth/drive.file' 
CLIENT_SECRET_FILE='client_secret.json' 
APPLICATION_NAME='Drive API Python Quickstart' 


def get_credentials(): 
    """Gets valid user credentials from storage. 

    If nothing has been stored, or if the stored credentials are invalid, 
    the OAuth2 flow is completed to obtain the new credentials. 

    Returns: 
     Credentials, the obtained credential. 
    """ 
    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, 
           'drive-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) 
     print('Storing credentials to ' + credential_path) 
    return credentials 

def main(drive_service=None): 
    """Shows basic usage of the Google Drive API. 

    Creates a Google Drive API service object and outputs the names and IDs 
    for up to 10 files. 
    """ 
    credentials=get_credentials() 
    http=credentials.authorize(httplib2.Http()) 
    service=discovery.build('drive', 'v3', http=http) 

    file_metadata={ 
     'name': 'Invoices', 
     'mimeType': 'application/vnd.google-apps.folder' 
    } 
    file=service.files().create(body=file_metadata, 
             fields='id').execute() 
    print('Folder ID: %s' % file.get('id')) 

if __name__ == '__main__': 
    main() 

和我在AWS LAMBDA处理程序lambda_function.main,如果我尝试测试我得到一个错误。如果我在控制台执行此操作,我成功执行此代码并在Google Drive api中创建一个文件夹。所以也许谁知道我做错了什么?请帮助。

回答

0

的AWS LAMBDA处理例如具有两个参数的事件和情境:

def lambda_handler(event, context): 
+0

感谢您的回复,你看,现在我解决它,但我得到下一个错误“的errorMessage”:“模块初始化错误”和在日志中它看起来像:模块初始化错误:[Errno 30]只读文件系统:'/ home/sbx_user1078' – Andrej

+0

您需要创建一个部署包与您正在使用的库,阅读:http://docs.aws .amazon.com/lambda/latest/dg/lambda-python-how-to-create-deployment-package.html – drsromero

+0

我已经创建了它!所有模块都在.zip文件中。我使用virualenv创建它,步骤如下: 1. virtualenv -p /usr/bin/python3.5 google 2.安装谷歌驱动api模块:pip install --upgrade google-api-python-client 3.添加从站点包压缩文件的所有模块 – Andrej