如何在Voip App中使用带有背景的pushkit
how to use pushkit with background in Voip App
目前,对于处于后台模式的我的 Voip 应用程序,我使用下面的代码,当我的 voip 应用程序进入后台时或当它进入后台并在呼叫到达时锁定 phone,它显示通知。我在 IOS 8 和更高版本中看到 setKeepAliveTimeout 不再起作用,我们需要使用 Pushkit,是否可以在不对我们的服务器端进行编码的情况下使用 pushKit?
- (void)registerKeepAliveHandler:(UIApplication*) application
{
LogInfo(TAG_MAIN, @"Registering KeepAliveTimeout");
[application setKeepAliveTimeout:600 handler:^{
[[NSNotificationCenter defaultCenter] postNotificationName:NOTIFICATION_KEEPALIVE_RECEIVED object:nil];
NSMutableString* statusStr = [[NSMutableString alloc] init];
switch ([[UIApplication sharedApplication] applicationState]) {
case UIApplicationStateActive:
[statusStr appendString:@"foreground"];
break;
case UIApplicationStateInactive:
[statusStr appendString:@"inactive"];
break;
case UIApplicationStateBackground:
[statusStr appendString:@"background"];
break;
default:
assert(0);
break;
}
LogInfo(TAG_MAIN, @"===================================== Keepalive received in %@ application status ===============================", statusStr);
[UIApplication getIPAddress];
LogInfo(TAG_MAIN, @"%@", [[UIDevice currentDevice] batteryInfo]);
[[SipEngine sharedInstance] isServerReachable];
[[SipEngine sharedInstance] isRegistered];
[[SipEngine sharedInstance] startStopRegistration];
[[[SipEngine sharedInstance] registration] registering];
}];
}
继续,在 iOS 中必须使用 Pushkit for Background (BG) Voip 应用程序,因为它将完全弃用 iOS 11 中的 Voip BG 套接字。(我认为他们已经弃用了iOS 10 SDK 中的支持,但 iOS 10 适用于 SDK 9)
要回答您的问题,不,您需要在服务器端实现 APNS 接口以与 Apple 的 APNS 云通信,以便您的应用程序可以通过 Apple 接收 VoIP 电话等的 VOIP 推送。此外,请注意,如果 BG 中的 VOIP 应用程序处于封闭网络(无互联网)中,则它们将不再适用于 iOS,因为必须使用 APNS 接口才能向使用 Pushkit 的应用程序提供 Voip 推送。
如果你想在终止状态下运行你的应用程序以及了解来电并进行进一步处理,那么你应该使用推送套件静默通知。 (这样 Whatsapp 通话、Skype 等应用程序就可以工作了)
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
pushRegistry.delegate = self;
pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
return YES;
}
#define PushKit Delegate Methods
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)credentials forType:(NSString *)type{
if([credentials.token length] == 0) {
NSLog(@"voip token NULL");
return;
}
NSLog(@"PushCredentials: %@", credentials.token);
}
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(NSString *)type
{
NSLog(@"didReceiveIncomingPushWithPayload");
}
@end
目前,对于处于后台模式的我的 Voip 应用程序,我使用下面的代码,当我的 voip 应用程序进入后台时或当它进入后台并在呼叫到达时锁定 phone,它显示通知。我在 IOS 8 和更高版本中看到 setKeepAliveTimeout 不再起作用,我们需要使用 Pushkit,是否可以在不对我们的服务器端进行编码的情况下使用 pushKit?
- (void)registerKeepAliveHandler:(UIApplication*) application
{
LogInfo(TAG_MAIN, @"Registering KeepAliveTimeout");
[application setKeepAliveTimeout:600 handler:^{
[[NSNotificationCenter defaultCenter] postNotificationName:NOTIFICATION_KEEPALIVE_RECEIVED object:nil];
NSMutableString* statusStr = [[NSMutableString alloc] init];
switch ([[UIApplication sharedApplication] applicationState]) {
case UIApplicationStateActive:
[statusStr appendString:@"foreground"];
break;
case UIApplicationStateInactive:
[statusStr appendString:@"inactive"];
break;
case UIApplicationStateBackground:
[statusStr appendString:@"background"];
break;
default:
assert(0);
break;
}
LogInfo(TAG_MAIN, @"===================================== Keepalive received in %@ application status ===============================", statusStr);
[UIApplication getIPAddress];
LogInfo(TAG_MAIN, @"%@", [[UIDevice currentDevice] batteryInfo]);
[[SipEngine sharedInstance] isServerReachable];
[[SipEngine sharedInstance] isRegistered];
[[SipEngine sharedInstance] startStopRegistration];
[[[SipEngine sharedInstance] registration] registering];
}];
}
继续,在 iOS 中必须使用 Pushkit for Background (BG) Voip 应用程序,因为它将完全弃用 iOS 11 中的 Voip BG 套接字。(我认为他们已经弃用了iOS 10 SDK 中的支持,但 iOS 10 适用于 SDK 9)
要回答您的问题,不,您需要在服务器端实现 APNS 接口以与 Apple 的 APNS 云通信,以便您的应用程序可以通过 Apple 接收 VoIP 电话等的 VOIP 推送。此外,请注意,如果 BG 中的 VOIP 应用程序处于封闭网络(无互联网)中,则它们将不再适用于 iOS,因为必须使用 APNS 接口才能向使用 Pushkit 的应用程序提供 Voip 推送。
如果你想在终止状态下运行你的应用程序以及了解来电并进行进一步处理,那么你应该使用推送套件静默通知。 (这样 Whatsapp 通话、Skype 等应用程序就可以工作了)
#import "AppDelegate.h"
@interface AppDelegate ()
@end
@implementation AppDelegate
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
pushRegistry = [[PKPushRegistry alloc] initWithQueue:dispatch_get_main_queue()];
pushRegistry.delegate = self;
pushRegistry.desiredPushTypes = [NSSet setWithObject:PKPushTypeVoIP];
return YES;
}
#define PushKit Delegate Methods
- (void)pushRegistry:(PKPushRegistry *)registry didUpdatePushCredentials:(PKPushCredentials *)credentials forType:(NSString *)type{
if([credentials.token length] == 0) {
NSLog(@"voip token NULL");
return;
}
NSLog(@"PushCredentials: %@", credentials.token);
}
- (void)pushRegistry:(PKPushRegistry *)registry didReceiveIncomingPushWithPayload:(PKPushPayload *)payload forType:(NSString *)type
{
NSLog(@"didReceiveIncomingPushWithPayload");
}
@end