Lambda Return Payload botocore.response.StreamingBody object prints but then empty in variable

|▌冷眼眸甩不掉的悲伤 提交于 2020-01-01 14:26:11

问题


I'm invoking a lambda function from another function and want to take a different action depending on the response, pretty standard stuff. However I get some unexpected behavior, it's probably something obvious, but it is eluding me. I've recreated my example in the simplest possible example any help would be much appreciated.

The lambda function

def lambda_handler(event, context):
    return 'Just a string'

The code to call the lambda function

    def invoke_lambda(payload):
        r = lambda_client.invoke(
            FunctionName='MyLambdaFunction',
            InvocationType='RequestResponse',
            Payload=bytes(payload)
        )

    p = r['Payload'].read()
    print p #Prints an empty string
    print(r['Payload'].read()) #Prints Just a string
    invoke_lambda(payload)

回答1:


The following code solves the problem. Apparently I need to set the streamingbody to a variable, then read it into another variable. I used this link for reference

def invoke_lambda(payload):
    r = lambda_client.invoke(
        FunctionName='MyLambdaFunction',
        InvocationType='RequestResponse',
        Payload=bytes(payload)
    )
    t = r['Payload']
    j = t.read()
    print j



回答2:


If you expect JSON as response, you can do the following:

import json

def invoke_lambda(payload):
    response = lambda_client.invoke(
        FunctionName='MyLambdaFunction',
        InvocationType='RequestResponse',
        Payload=bytes(payload)
    )  

    response_payload = json.loads(invoke_response['Payload'].read().decode("utf-8"))

    print ("response_payload: {}".format(response_payload))


来源:https://stackoverflow.com/questions/43294802/lambda-return-payload-botocore-response-streamingbody-object-prints-but-then-emp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!