- 收款 退款推送 商户收银员手机收到想用收款消息提醒 点击消息 跳转到收款详细页
收款/退款
->androidNotification('支付宝到账0.01元', [
'extras' => [
'type' => 'app',
'app_id' => 'skxq',
'url' => '',
'out_trade_no' => '20183489982198921'
]
])
花呗分期/花呗分期退款
->androidNotification('花呗分期10元', [
'extras' => [
'type' => 'app',
'app_id' => 'hbfqxq',
'url' => '',
'out_trade_no' => '20183489982198921'
]
])
2.公告提醒 商户收银员手机收到想用公告消息提醒 点击消息 跳转公告
消息
->androidNotification($title, [
'extras' => [
'type' => 'app',
'app_id' => 'news',
'url' => '',
'out_trade_no' => ''
]
])
公告
->androidNotification($title, [
'extras' => [
'type' => 'app',
'app_id' => 'notice',
'url' => '',
'out_trade_no' => ''
]
])
3.新闻链接提醒 商户收银员手机收到想用消息推送 点击消息 直接在app内部跳转url
->androidNotification($title, [
'extras' => [
'type' => 'url',
'app_id' => '',
'url' => 'www.baidu.com',
'out_trade_no' => ''
]
])