我是AWS Lambda的新手我有一个python代码,它有一个用于进行外部API调用的post方法,
import requests
import json
url = "http://sample/project"
headers = {
'content-type': "application/json"
}
r = request.post(url,headers=headers)
我尝试将其置于AWS Lamda调用中,我尝试如下,但它没有得到解决
import requests
import json
url = "http://sample/project"
headers = {
'content-type': "application/json"
}
def lambda_handler(event, context):
response = requests.request("POST", url, headers=headers)
return response
但是我没有得到任何回复,如果我从本地机器运行我得到输出。请帮助我如何从AWS Lamda打电话