Я хочу прочитать параметр "ключ" в запросе http post, но он не работает.
def my_handler(event, context):
print(event)
print(event['body'])
print("key: " + event['key'])
key = event['query']['key']
encoded_string = str(key).encode("utf-8")
# Create the file named for example "42.json" containing the appropriate data
s3_path = str(key) + '.json'
s3 = boto3.resource("s3")
s3.Bucket(BUCKET_NAME).put_object(Key=s3_path, Body=encoded_string)
message = {
'message': 'Created {}!'.format(key)
}
return {
'statusCode': 200,
'headers': {'Content-Type': 'application/json'},
'body': json.dumps(message)
}
Обновление: если я использую приведенный ниже код, я могу читать данные JSON в посте http, но все равно не могу прочитать данные формы.
def my_handler(event, context):
print(event)
print(event['body'])
# print("key: " + event['key'])
print("key " + json.loads(event['body'])["key"])
key = json.loads(event['body'])["key"]
encoded_string = str(key).encode("utf-8")
# Create the file named for example "42.json" containing the appropriate data
s3_path = str(key) + '.json'
s3 = boto3.resource("s3")
s3.Bucket(BUCKET_NAME).put_object(Key=s3_path, Body=encoded_string)
message = {
'message': 'Created {}!'.format(key)
}
return {
'statusCode': 200,
'headers': {'Content-Type': 'application/json'},
'body': json.dumps(message)
}