自从使用即时消息推送通知
Posted
技术标签:
【中文标题】自从使用即时消息推送通知【英文标题】:Since Push Notification with Instant Messaging 【发布时间】:2015-10-18 05:54:03 【问题描述】:我正在使用 SinMessageClient 发送消息。我需要在我的代码中支持推送通知,并且我已经使用以下代码设置了推送:
NSString* userId = [options valueForKey:APP_USER_USERID_CONSTANT];
id<SINClient> sinchClient = [Sinch
clientWithApplicationKey:SINCH_APPLICATION_KEY
applicationSecret:SINCH_APPLICATION_SECRET
environmentHost:@"sandbox.sinch.com"
userId:userId];
[sinchClient setSupportMessaging:YES];
[sinchClient enableManagedPushNotifications];
sinchClient.delegate = delegate;
self.push = [Sinch managedPushWithAPSEnvironment:SINAPSEnvironmentAutomatic];
self.push.delegate = delegate;
[self.push setDesiredPushTypeAutomatically];
[self.push registerUserNotificationSettings];
// Start the Sinch Client
[sinchClient start];
// Start listening for incoming events (calls and messages).
[sinchClient startListeningOnActiveConnection];
我也实现了这里提到的所有要求https://www.sinch.com/tutorials/ios-managed-push/
它不工作,我有以下查询。 如果我的应用程序在后台,将如何发送推送消息? 我可以在不支持 sinch 呼叫客户端的情况下支持推送通知吗? 我只在 sinch 仪表板上传 APN 推送证书,而不是 voip 推送证书。它适用于即时通讯应用吗?
【问题讨论】:
我遇到了类似的问题 【参考方案1】:常规推送有效,无需 callClient。问题还在吗?
【讨论】:
我也没有得到任何推动。你能帮忙吗? ***.com/questions/37577566/…以上是关于自从使用即时消息推送通知的主要内容,如果未能解决你的问题,请参考以下文章