AWS Lambda和Pusher集成。如何发送通知?

时间:2017-02-05 09:06:30

标签: amazon-web-services push-notification aws-lambda pusher

我正在尝试使用AWS Lambda来触发浏览器的Pusher通知。相同的代码在本地运行时工作正常,但在Lambda上运行时无法连接到Pusher服务器:

exports.handler = function (event, context) {

var pusher = new Pusher({
    appId: '<id>',
    key: '<key>',
    secret: '<secret>',
    cluster : "eu"
});

console.log(pusher);

pusher.trigger('test_channel', 'my_event', {"message": "hello world"});

context.succeed('hello world');
};

任何想法为什么它不起作用?或者如何让它工作?

1 个答案:

答案 0 :(得分:0)

您忘记添加 $color = \App\Color::take(1)->first();