平台 | 支持类型 |
Android | Intent 方式跳转:点击通知可以跳转至指定应用内页面,并且可以携带自定义参数 打开应用:点击通知可以直接进入 App 主页面 URL:点击通知可以打开浏览器进入指定的网页 应用内 Activity:点击通知可以跳转至指定应用内页面 |
iOS | 点击通知默认是打开 App 根据下发的自定义 key 和 value 来做相应业务逻辑 |
<activityandroid:name="com.qq.xg.AboutActivity"android:theme="@android:style/Theme.NoTitleBar.Fullscreen" ><!-- 其他 intent-filter --><!-- <intent-filter> ... </intent-filter> --><!-- AndroidManifest 支持为一个安卓组件配置多个 intent-filter,请将自定义跳转配置添加在单独 intent-filter 内 --><intent-filter ><action android:name="android.intent.action.VIEW" /><category android:name="android.intent.category.DEFAULT"/><!-- 自定义 data 块内容以指定您的完整 scheme --><!-- 按照您的配置,将会组成形如"语义名://主机名/路径名"的 url 标识 --><!-- 建议使用带有 app 名称、包名等可以唯一标记应用的字段进行配置,防止和其他应用的跳转目标页面冲突 --><dataandroid:scheme="语义名"android:host="主机名"android:path="/路径名" /></intent-filter></activity>
body.message.android
下添加 action
和 action_type
字段,属性如下:字段名 | 类型 | 父项目 | 默认值 | 必需 | 参数描述 |
action | Object | Android | 有 | 否 | 设置点击通知栏之后的行为,默认为打开 App |
action_type | Integer | Action | 有 | 否 | 点击动作类型, 1:打开 activity 或 App 本身 2:打开浏览器 3:打开 Intent(推荐 配置指引) |
{"audience_type": "token","token_list": ["04xxx993"],"message_type": "notify","message":{"title": "xxx","content": "xxx","android": {"action": {"action_type": 3, // 动作类型,1,打开 activity 或 App 本身;2,打开浏览器;3,打开 Intent"intent": "xgscheme://com.tpns.push/notify_detail" //SDK 版本需要大于等于1.0.9,然后在客户端的intent配置 data 标签,并设置 scheme 属性}}}}
{"audience_type": "token","token_list": ["04xxx993"],"message_type": "notify","message":{"title": "xxx","content": "xxx","android": {"action": {"action_type": 3, // 动作类型,1:打开 activity 或 App 本身;2:打开浏览器;3:打开 Intent"intent": "xgscheme://com.tpns.push/notify_detail?param1=aa¶m2=bb" //SDK 版本需要大于等于1.0.9,然后在客户端的 intent 配置 data 标签,并设置 scheme 属性}}}}
{"audience_type": "token","token_list": ["04xxx993"],"message_type": "notify","message":{"title": "xxx","content": "xxx","android": {"action": {"action_type": 1 // 动作类型,1:打开 activity 或 App 本身;2:打开浏览器;3:打开 Intent}}}}
{"audience_type": "token","token_list": ["04xxx993"],"message_type": "notify","message":{"title": "xxx","content": "xxx","android": {"action": {"action_type": 2, // 动作类型,1:打开 activity 或 App 本身;2:打开浏览器;3:打开 Intent"browser": {"url": "http://tpns.qq.com", // 仅支持http、https"confirm": 1 // 是否需要用户确认}}}}}
{"audience_type": "token","token_list": ["04xxx993"],"message_type": "notify","message":{"title": "xxx","content": "xxx","android": {"action": {"action_type": 1, // 动作类型,1:打开 activity 或 App 本身;2:打开浏览器;3:打开 Intent"activity": "com.x.y.MainActivity","aty_attr": {// activity 属性,只针对 action_type=1 的情况"if": 0, // Intent 的 Flag 属性"pf": 0 // PendingIntent 的 Flag 属性}}}}}
@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_temp);// ...// onCreate 内获取// 当使用 intent uri (客户端自定义)方式推送,且在 intent 尾部添加了参数,可以通过此段代码获取各参数值。// 例如推送的 intent 值为 xgscheme://com.tpns.push/notify_detail?param1=aa¶m2=bb,// 则可以通过此段代码获取到 param1 的值 aa 和 param2 的值 bb。Uri uri = getIntent().getData();Log.i(TAG, "onCreate get data uri: " + uri);if (uri != null) {String url = uri.toString();String p1 = uri.getQueryParameter("param1");String p2 = uri.getQueryParameter("param2");}// SDK 1.3.2.0 起新增// 当创建推送任务时有填自定义参数(custom_content),可以通过此接口获取 custom_content 字符串内容。String customContent = XGPushManager.getCustomContentFromIntent(this, this.getIntent());// ...}
@Overrideprotected void onNewIntent(Intent intent) {super.onNewIntent(intent);// ...// onNewIntent 内获取// 当使用 intent uri (客户端自定义)方式推送,且在 intent 尾部添加了参数,可以通过此段代码获取各参数值。// 例如推送的 intent 值为 xgscheme://com.tpns.push/notify_detail?param1=aa¶m2=bb,// 则可以通过此段代码获取到 param1 的值 aa 和 param2 的值 bb。Uri uri = intent.getData();Log.i(TAG, "onNewIntent get data uri: " + uri);if (uri != null) {String url = uri.toString();String p1 = uri.getQueryParameter("param1");String p2 = uri.getQueryParameter("param2");}// SDK 1.3.2.0 起新增// 当创建推送任务时有填自定义参数(custom_content),可以通过此接口获取 custom_content 字符串内容。String customContent = XGPushManager.getCustomContentFromIntent(this, intent);// ...}
Uri uri = getIntent().getData();if (uri != null) {String p1 = uri.getQueryParameter("param1");String value1 = "";try {// 自定义参数 param1 的值包含特殊字符,创建推送时可将 param1 的值进行 URLEncode;此处获取时则进行 URLDecodevalue1 = URLDecoder.decode(p1, "UTF-8");} catch (UnsupportedEncodingException e) {Log.w("TPNS", "URLDecode param failed: " + e.toString());}// 自定义参数 param2 未进行 URLEncode,直接获取即可String value2 = uri.getQueryParameter("param2");Log.i("TPNS" , "value1 = " + value1);}
body.message.ios
下添加 custom_content
字段,属性如下:字段名 | 类型 | 父项目 | 默认值 | 必需 | 参数描述 |
custom_content | String | ios | 无 | 否 | 自定义下发的参数,需要序列化为 json string |
{"audience_type": "token","environment": "dev","token_list": ["0250df875c93c555dd3a2ba536b54fc1xxxx"],"message_type": "notify","message": {"title": "xxx","content": "xxxxxxxxx","ios": {"aps": {"alert": {"subtitle": "xxx"}},"custom_content": "{\\"key\\":\\"value\\"}"}}}
/// 统一点击回调/// @param response 如果 iOS 10+/macOS 10.14+ 则为 UNNotificationResponse,低于目标版本则为 NSDictionary/// @note TPNS SDK1.2.7.1+- (void)xgPushDidReceiveNotificationResponse:(nonnull id)response withCompletionHandler:(nonnull void (^)(void))completionHandler {NSLog(@"[TPNS Demo] click notification");if ([response isKindOfClass:[UNNotificationResponse class]]) {/// iOS10+消息体获取NSLog(@"notification dic: %@", ((UNNotificationResponse *)response).notification.request.content.userInfo);} else if ([response isKindOfClass:[NSDictionary class]]) {/// <IOS10消息体获取NSLog(@"notification dic: %@", response);}completionHandler();}
本页内容是否解决了您的问题?