注:Android 直接提供了字段设置 title,阅读文档
一、展示效果介绍:
iOS 10 以下支持设置标题 title ,设置后 title 值将取代通知栏上的应用名称:
iOS 10 及以上支持设置标题 title 和 subtitle,title 和 subtitle 自带加粗效果,无法取消,展示效果如下图:
二、官网推送传值介绍:
选择推送通知 → 选择 iOS 目标平台 → 展开可选设置 → iOS 可选设置下有 title 和 subtitle 选择
三、Push API 推送传值介绍:
iOS 的 alert 是支持 json 对象的,所以你可以传递一个固定格式的 json,比如:
{
"notification" : {
"ios" : {
"alert" : {
"title" : "JPush Title", //可选设置
"subtitle" : "JPush Subtitle" , //可选设置
"body" : "JPush Body" //必填,否则通知将不展示,在不设置 title 和 subtitle 时直接对 alert 传值即可,不需要特地写 body 字段
},
"sound" : "sound.caf",
"badge" : 1,
"extras" : {
"news_id" : 134,
"my_key" : "a value"
}
}
}
}
极光提供的各语言的服务端 SDK 均已支持传 title 和 subtitle,如果你所使用的 SDK 不支持,请更新到最新版本。
1、Java SDK (从 3.2.11 版本开始支持)
example 示例: GitHub地址点我
public static void testSendIosAlert() {
JPushClient jpushClient = new JPushClient(MASTER_SECRET, APP_KEY);
IosAlert alert = IosAlert.newBuilder()
.setTitleAndBody("test alert", "subtitle", "test ios alert json")
.setActionLocKey("PLAY")
.build();
try {
PushResult result = jpushClient.sendIosNotificationWithAlias(alert, new HashMap<String, String>(), "alias1");
LOG.info("Got result - " + result);
} catch (APIConnectionException e) {
LOG.error("Connection error. Should retry later. ", e);
} catch (APIRequestException e) {
LOG.error("Error response from JPush server. Should review and fix it. ", e);
LOG.info("HTTP Status: " + e.getStatus());
LOG.info("Error Code: " + e.getErrorCode());
LOG.info("Error Message: " + e.getErrorMessage());
}
}
2、PHP SDK
example 示例: GitHub地址点我
try {
$response = $client->push()
->setPlatform(array('ios', 'android'))
->addRegistrationId($registration_id)
->setNotificationAlert('Hi, JPush')
->iosNotification(array(
'title' => 'title', //可选设置
'subtitle' => 'subtitle', //可选设置
'body' => 'body'//必填,否则通知栏不展示
),array(
'sound' => 'sound.caf',
'extras' => array(
'key' => 'value',
'jiguang'
),
))
->options(array(
// True 表示推送生产环境,False 表示要推送开发环境;如果不指定则默认为推送生产环境
'apns_production' => false,
))
->send();
print_r($response);
} catch (\JPush\Exceptions\APIConnectionException $e) {
// try something here
print $e;
} catch (\JPush\Exceptions\APIRequestException $e) {
// try something here
print $e;
}
3、C# SDK
alert 实现为接收 Object 类型
如果对你有帮助,点个赞 呗ლ(╹◡╹ლ)
点这里返回常见问题目录,不吹不黑,收藏本帖可以解决你 90% 的问题 (ノ◕ω◕)ノଘ_ଘ
0条评论