如何在Amazon Lambda中从Python调用外部API Web服务?

时间:2017-08-01 17:04:10

标签: web-services amazon-web-services aws-lambda

我是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打电话

0 个答案:

没有答案