我使用laravel Notifications向我的应用程序的注册用户发送短信。
我最初使用默认的Nexmo频道,但后来创建了自己的频道来排除任何问题。
我正在将每封邮件存储在我的数据库中,每封邮件都有一条消息'数组列,其中包含Nexmo发送的每条物理消息的JSON响应信息。
例如
[{"to":"441122334455","message-id":"0B00000099A49D63","status":"0","remaining-balance":"7.00500000","message-price":"0.03330000","network":"23410"}]
我的自定义短信频道如下
namespace App\Notifications\Channels;
use Illuminate\Notifications\Notification;
use Nexmo\Laravel\Facade\Nexmo;
class CustomSmsChannel
{
/**
* Send the given notification.
*
* @param mixed $notifiable
* @param \Illuminate\Notifications\Notification $notification
* @return void
*/
public function send($notifiable, Notification $notification)
{
$message = $notification->toCustomSms($notifiable);
return Nexmo::message()->send([
'to' => $notifiable->phone_number,
'from' => env('NEXMO_FROM'),
'text' => $message->content,
'status-report-req' => 1
]);
}
}
这会发送消息OK,我收到的很好,没有问题。
我已经在Nexmo控制面板上设置了网络挂钩,以便将收据发送到正确的网址(我使用http,是否需要https?)
我的路线文件如下
Route::get('sms/delivery-status', 'SmsController@deliveryStatus');
使用我的SmsController方法
/**
* The webhook for Nexmo to receive delivery statuses.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function deliveryStatus(Request $request)
{
if (!isset($request->messageId) OR !isset($request->status)) {
Log::error('Not a valid delivery receipt');
return;
}
// Loop for all main SMS messages with the given phone number.
$entries = SmsHistory::where('phone_number', $request->to)->get();
// Loop through each of the SMS message to that number.
foreach ($entries as $item) {
// Loop through each of the rsent messages for the main message.
foreach ($item->messages as $key => $message) {
// Check whether the given messageID matches the one stored in the messages array field.
if ($message['message-id'] == $request->messageId) {
$messages = $item->messages;
// Remove the current message
array_pull($messages, $key);
// Add the new message
$messages = array_add($messages, $key, $request->input());
$item->messages = $messages;
$item->save();
}
}
}
return response('OK', 200);
}
简而言之,搜索phone_number匹配'到'的所有邮件。值。然后,对于每条消息,它循环遍历由Nexmo发送的每个消息部分(存储在JSON列中)以匹配messageId。
找到messageId后,它会将JSON替换为收据上提供的JSON,例如。
[{"msisdn":"441122334455","to":"441122334455","network-code":"23410","messageId":"0B000000999B5FCB","price":"0.02000000","status":"delivered","scts":"1208121359","err-code":"0","message-timestamp":"\\2020-01-01\\ 12:00:00"}]
然后用于确认消息已在我的视图中传递(通过确保所有部件都显示为已交付等)
如果我手动执行GET请求并将正确的'设置为'和' messageId'请求中的变量数据库行更新正常,以便规则出来。
对于长篇文章感到抱歉,这可能不是最有说服力的方式,但我错过了什么?!
答案 0 :(得分:0)
我发现了这个问题。
记录请求(为什么我没有这样做我不知道,但是谢谢你建议)我意识到我正在搜索匹配的phone_number错误的号码。
常识说我用'''但我需要使用'msisdn'?!
无论如何,在控制器中更改了它并且它运行不正常! :)