Laravel-“找不到请求的资源/2010-04-01/Accounts//Messages.json”

时间:2019-09-05 16:16:49

标签: laravel twilio

我是Twilio试用版,使用Laravel-5.8发送短信。当我在POSTMAN上测试POST请求时,出现此错误:

  

“未找到请求的资源/2010-04-01/Accounts//Messages.json”

我检查了文档,但无法解决问题。

  public function sendSMS()
  {

    // initialize message array 
    $message_array = array(
        'sender_id'     => 'Kiunds9ef6f6dgsdfe58946dcbudheF',
        'sender_secret' => '45hghds3173yhrd4aaf9ffgfgd',
        'reciver_mobile' => '+2337098760794',
        'otp'     =>'905456',

        'sender' => '+449887532'
    );

    // This will send OTP only
    $sms_response = Twilio::message($message_array,$op="otp only", false, true,  false ); // otp

    return response()->json($sms_response,200);
  }   
Route::post('send_sms','ApiController@sendSMS');

我希望在手机上收到一条消息,但收到上面显示的错误。

0 个答案:

没有答案