1
我正在製作一個Web服務發送推送通知到IOS應用程序。我正在嘗試使用Puch Sharp。在網絡上,我得到了Push Sharp 1.1示例的例子,但現在它是2.2。推夏普發送推送通知到IOS應用程序
這是版本1.1的代碼。有人可以告訴我在2.2版本中使用什麼來發送推送通知給IOS應用程序。
' ''Configure and start Apple APNS
' '' IMPORTANT: Make sure you use the right Push certificate. Apple allows you to generate one for connecting to Sandbox,
' '' and one for connecting to Production. You must use the right one, to match the provisioning profile you build your
' '' app with!
Dim appleCert() As Byte = File.ReadAllBytes(Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "~/DocketTrak_Development.p12"))
' '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' ''IMPORTANT: If you are using a Development provisioning Profile, you must use the Sandbox push notification server
' '' (so you would leave the first arg in the ctor of ApplePushChannelSettings as 'false')
' '' If you are using an AdHoc or AppStore provisioning profile, you must use the Production push notification server
' '' (so you would change the first arg in the ctor of ApplePushChannelSettings to 'true')
'_push.StartApplePushService(New ApplePushChannelSettings(False, appleCert, "trakDock3%", False))