Nexmo sms laravel无法正常工作

时间:2015-11-09 12:41:11

标签: php laravel nexmo

基本上有一个错误的读数会触发一个名为“AbnormalReadingWasTaken”的事件。我在“AbnormalReadingWasTaken”中注册了两名听众。在我的' EventServiceProviders'第一个听众' AddReadingsToAlertsTable'但是另一个听众' SendAlertSMS'似乎不起作用。我错过了什么,任何人都可以帮助我吗?我相信这与nexmo短信的卷曲脚本有关吗?

<?php

namespace App\Listeners;

use App\Events\AbnormalReadingWasTaken;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;

class SendAlertSMS
{
    /**
     * Create the event listener.
     *
     * @return void
     */
    public function __construct()
    {
        //
    }

    /**
     * Handle the event.
     *
     * @param  AbnormalReadingWasTaken  $event
     * @return void
     */
    public function handle(AbnormalReadingWasTaken $event)
    {
        $url = 'https://rest.nexmo.com/sms/json?' . http_build_query([
        'api_key' => 'xxxxx',
        'api_secret' => 'xxxxx',
        'to' => 'xxxxx',
        'from' => 'xxxxxx',
        'text' => 'Hello from Nexmo'
        ]);

    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $response = curl_exec($ch);
    }
} 

1 个答案:

答案 0 :(得分:1)

抱歉造成的问题,代码没有错,错误是因为错误的api_key,我的错误不能相信我实际上复制了错误的api_key。 -_-