我正在尝试使用无服务器在 AWS Lambda 上运行一个简单的脚本来推送它,该脚本获取一个 url 并返回它(代理),由于某种原因我看不到响应。
有问题的脚本:
'use strict';
let axios = require('axios')
module.exports.hello = async (event, context) => {
let res = await axios.get('http://example.com')
return {
statusCode: 200,
body: JSON.stringify({
message: res,
input: event,
}),
}
};
我的无服务器 YML:
service: get-soundcloud-tracks
provider:
name: aws
runtime: nodejs8.10
profile: home
functions:
hello:
handler: handler.hello
events:
- http:
path: users/create
method: get
cors: true