通过通知从后台唤醒 iOS 应用
Posted
技术标签:
【中文标题】通过通知从后台唤醒 iOS 应用【英文标题】:Wake up an iOS app from background with a notification 【发布时间】:2016-10-06 13:02:23 【问题描述】:我有一个带有 Firebase Cloud Messaging 的 ios 应用来管理我的推送通知。它运行良好,但我想在收到推送通知时打开我的应用程序(在后台状态下)。有点像 WhatsApp,带有自定义调用 (WebRTC) 视图。
有什么想法吗?
显然我应该使用 PushKit 来做我想做的事情。
还有其他方法可以做到这一点...例如Signal
应用程序。响铃通知(按?),然后用户点击打开应用程序。
【问题讨论】:
你需要实现 Apple pushKit 而不是 APNS。 谢谢。如何实现 PushKit? developer.apple.com/reference/pushkit 好的,谢谢。我不知道如何实现它。你有一些不错的文章吗? 【参考方案1】:直到 FCM 不支持静默推送通知(Push kit)。
使用 Pushkit 是目前唯一向设备发送静默推送通知的技术。
如果您收到静默推送通知有效负载,那么您必须安排本地通知,因为静默推送通知不会进入通知中心。直到您的本地通知声音文件播放(最多 30 秒),您的应用程序将在后台或终止状态下被调用。你可以在这里做需要活动,但不是 UI 活动。
在点击交互式本地通知时,您可以进行进一步的 UI 活动。
使用下面的结构来完成你的任务。
使用这个 simplepush.php 文件
<?php
// Put your device token here (without spaces):
$deviceToken = '1234567890123456789';
//
// Put your private key's passphrase here:
$passphrase = 'ProjectName';
// Put your alert message here:
$message = 'My first push notification!';
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'PemFileName.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);
// Open a connection to the APNS server
$fp = stream_socket_client(
// 'ssl://gateway.push.apple.com:2195', $err,
'ssl://gateway.sandbox.push.apple.com:2195', $err,
$errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);
if (!$fp)
exit("Failed to connect: $err $errstr" . PHP_EOL);
echo 'Connected to APNS' . PHP_EOL;
// Create the payload body
$body['aps'] = array(
'content-available'=> 1,
'alert' => $message,
'sound' => 'default',
'badge' => 0,
);
// Encode the payload as JSON
$payload = json_encode($body);
// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;
// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));
if (!$result)
echo 'Message not delivered' . PHP_EOL;
else
echo 'Message successfully delivered' . PHP_EOL;
// Close the connection to the server
fclose($fp);
使用下面的命令创建 pem 文件并在上面的代码中使用它
$ openssl x509 -in aps_development.cer -inform der -out PushCert.pem
# Convert .p12 to .pem. Enter your pass pharse which is the same pwd that you have given while creating the .p12 certificate. PEM pass phrase also same as .p12 cert.
$ openssl pkcs12 -nocerts -out PushKey1.pem -in pushkey.p12
Enter Import Password:
MAC verified OK
Enter PEM pass phrase:
Verifying - Enter PEM pass phrase:
# To remove passpharse for the key to access globally. This only solved my stream_socket_client() & certificate capath warnings.
$ openssl rsa -in PushKey1.pem -out PushKey1_Rmv.pem
Enter pass phrase for PushChatKey1.pem:
writing RSA key
# To join the two .pem file into one file:
$ cat PushCert.pem PushKey1_Rmv.pem > ApnsDev.pem
之后转到 simplepush.php 位置并触发命令 -> php simplepush.php
这样您可以测试您的推送工具包通知设置架构。
https://www.raywenderlich.com/123862/push-notifications-tutorial
Download
import UIKit
import PushKit
class AppDelegate: UIResponder, UIApplicationDelegate,PKPushRegistryDelegate
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool
let types: UIRemoteNotificationType = [.Alert, .Badge, .Sound]
application.registerForRemoteNotificationTypes(types)
self. PushKitRegistration()
return true
//MARK: - PushKitRegistration
func PushKitRegistration()
let mainQueue = dispatch_get_main_queue()
// Create a push registry object
if #available(iOS 8.0, *)
let voipRegistry: PKPushRegistry = PKPushRegistry(queue: mainQueue)
// Set the registry's delegate to self
voipRegistry.delegate = self
// Set the push type to VoIP
voipRegistry.desiredPushTypes = [PKPushTypeVoIP]
else
// Fallback on earlier versions
@available(iOS 8.0, *)
func pushRegistry(registry: PKPushRegistry!, didUpdatePushCredentials credentials: PKPushCredentials!, forType type: String!)
// Register VoIP push token (a property of PKPushCredentials) with server
let hexString : String = UnsafeBufferPointer<UInt8>(start: UnsafePointer(credentials.token.bytes),
count: credentials.token.length).map String(format: "%02x", $0) .joinWithSeparator("")
print(hexString)
@available(iOS 8.0, *)
func pushRegistry(registry: PKPushRegistry!, didReceiveIncomingPushWithPayload payload: PKPushPayload!, forType type: String!)
// Process the received push
// From here you have to schedule your local notification
如果您设置 Socket 架构,则并行。然后 Socket 用于广播数据,例如哪些用户在线/离线,您需要知道而不调用 API 然后您可以使用套接字,服务器上的套接字架构将在线/离线用户的数据发送到设备,而无需从设备发出请求。
【讨论】:
嘿,谢谢。所以我必须实现 PushKit 而不是推送通知。事实上,这正是我想要的应用程序......但我不知道如何实现它。我已经阅读了 Apple PushKit 参考,但我有点迷失了。你可以帮帮我吗 ?谢谢。 感谢您的回答。我会尽快尝试您的代码,如果需要,我会回复您。只是另一个问题......我必须创建一个 Apple 开发者证书吗? 欢迎您,您可以随时联系我进行VOIP相关咨询。 嘿我试过你的代码,但没有任何成功。我还没有将令牌打印到控制台。你可以帮帮我吗 ?也许生成证书和配置文件? 是的,如果您没有获得令牌。那么证书肯定有问题。你能用这个zeropush.com/guide/guide-to-pushkit-and-voip验证吗以上是关于通过通知从后台唤醒 iOS 应用的主要内容,如果未能解决你的问题,请参考以下文章