Skip to content

Commit cd1d711

Browse files
authored
Merge pull request #245552 from jomorr/jomorr-anh
Added the redirect file and deleted the removed files
2 parents 40a4813 + c1b5787 commit cd1d711

14 files changed

+54
-2760
lines changed
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"redirections": [
3+
{
4+
"source_path_from_root": "/articles/notification-hubs/notification-hubs-android-push-notification-google-gcm-get-started.md",
5+
"redirect_url": "/azure/notification-hubs/android-sdk",
6+
"redirect_document_id": false
7+
},
8+
{
9+
"source_path_from_root": "/articles/notification-hubs/notification-hubs-aspnet-backend-android-secure-google-gcm-push-notification.md",
10+
"redirect_url": "/azure/notification-hubs/android-sdk",
11+
"redirect_document_id": false
12+
},
13+
{
14+
"source_path_from_root": "/articles/notification-hubs/notification-hubs-aspnet-backend-android-xplat-segmented-gcm-push-notification.md",
15+
"redirect_url": "/azure/notification-hubs/notification-hubs-android-push-notification-google-fcm-get-started",
16+
"redirect_document_id": false
17+
},
18+
{
19+
"source_path_from_root": "/articles/notification-hubs/notification-hubs-aspnet-backend-gcm-android-push-to-user-google-notification.md",
20+
"redirect_url": "/azure/notification-hubs/push-notifications-android-specific-devices-firebase-cloud-messaging",
21+
"redirect_document_id": false
22+
},
23+
{
24+
"source_path_from_root": "/articles/notification-hubs/notification-hubs-windows-mobile-push-notifications-mpns.md",
25+
"redirect_url": "/azure/notification-hubs/notification-hubs-windows-store-dotnet-get-started-wns-push-notification",
26+
"redirect_document_id": false
27+
},
28+
{
29+
"source_path_from_root": "/articles/notification-hubs/notification-hubs-windows-phone-push-xplat-segmented-mpns-notification.md",
30+
"redirect_url": "/azure/notification-hubs/notification-hubs-windows-notification-dotnet-push-xplat-segmented-wns",
31+
"redirect_document_id": false
32+
},
33+
{
34+
"source_path_from_root": "/articles/notification-hubs/ios-sdk-legacy.md",
35+
"redirect_url": "/azure/notification-hubs/ios-sdk-current",
36+
"redirect_document_id": false
37+
}
38+
]
39+
}

articles/notification-hubs/TOC.yml

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
items:
3030
- name: Firebase Cloud Messaging
3131
items:
32-
- name: Send push notifications to all registrations (Current SDK)
32+
- name: Send push notifications to all registrations
3333
href: android-sdk.md
3434
- name: Send push notifications to specific devices
3535
href: push-notifications-android-specific-devices-firebase-cloud-messaging.md
@@ -39,23 +39,19 @@
3939
href: xamarin-notification-hubs-push-notifications-android-gcm.md
4040
- name: iOS
4141
items:
42-
- name: Notification Hubs updates for iOS 13
42+
- name: Notification Hubs updates for iOS 13+
4343
href: push-notification-updates-ios-13.md
44-
- name: Send push notifications to iOS apps
45-
items:
46-
- name: Prerequisites for iOS tutorials
47-
href: ios-sdk-get-started.md
48-
- name: Objective-C (Current SDK)
49-
href: ios-sdk-current.md
50-
- name: Objective-C (Legacy SDK)
51-
href: ios-sdk-legacy.md
44+
- name: Set up your iOS app to work with Azure Notification Hubs
45+
href: ios-sdk-get-started.md
46+
- name: Initial configuration to receive push notification from Azure Notification Hubs
47+
href: ios-sdk-current.md
5248
- name: Send push notifications to specific devices
5349
href: notification-hubs-ios-xplat-segmented-apns-push-notification.md
5450
- name: Send push notifications to specific users
5551
href: notification-hubs-aspnet-backend-ios-apple-apns-notification.md
5652
- name: Send push notifications to Xamarin iOS apps
5753
href: xamarin-notification-hubs-ios-push-notification-apns-get-started.md
58-
- name: Send push localized notifications to iOS devices
54+
- name: Send localized push notifications to iOS devices
5955
href: notification-hubs-ios-xplat-localized-apns-push-notification.md
6056
- name: Windows
6157
items:

articles/notification-hubs/ios-sdk-current.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.reviewer: thsomasu
1111
ms.lastreviewed: 06/01/2020
1212
---
1313

14-
# Tutorial: Send push notifications to iOS apps using Azure Notification Hubs SDK for Apple
14+
# Tutorial: Initial configuration to receive push notification from Azure Notification Hubs
1515

1616
This tutorial shows you how to use Azure Notification Hubs to send push notifications to an iOS application, using the Azure Notification Hubs SDK for Apple.
1717

@@ -40,11 +40,11 @@ configure push credentials in your notification hub. Even if you have no prior e
4040
4141
## Connect your iOS app to Notification Hubs
4242

43-
1. In Xcode, create a new iOS project and select the **Single View Application** template.
43+
1. In Xcode, create a new Xcode project and select the **iOS** Tab and **App** template.
4444

45-
:::image type="content" source="media/ios-sdk/image1.png" alt-text="Select template":::
45+
:::image type="content" source="media/ios-sdk/image1-new.png" alt-text="Diagram that shows Xcode setup for new app":::
4646

47-
2. When setting the options for your new project, make sure to use the same **Product Name** and **Organization Identifier** that you used when you set the bundle identifier in the Apple Developer portal.
47+
2. When setting the options for your new project, make sure to use the same **Product Name** and **Organization Identifier** that you used when you set the bundle identifier in the Apple Developer portal. The Bundle Identified in the new project window should populate to match the bundle identified in the Apple Developer portal. This is case sensitive.
4848

4949
3. Under Project Navigator, select your project name under **Targets**, then select the **Signing & Capabilities** tab. Make sure you select the appropriate **Team** for your Apple Developer account. XCode should automatically pull down the Provisioning Profile you created previously based on your bundle identifier.
5050

articles/notification-hubs/ios-sdk-get-started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ ms.reviewer: thsomasu
1111
ms.lastreviewed: 06/01/2020
1212
---
1313

14-
# Tutorial: Send push notifications to iOS apps using Azure Notification Hubs
14+
# Tutorial: Set up your iOS app to work with Azure Notification Hubs
1515

1616
This tutorial shows you how to set up Azure Notification Hubs and configure credentials to push notifications to an iOS device via the [Apple Push Notification service (APNS)](https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/APNSOverview.html#//apple_ref/doc/uid/TP40008194-CH8-SW1).
1717

@@ -101,7 +101,7 @@ Apple, and also register for push notifications.
101101
## Create a certificate for Notification Hubs
102102

103103
> [!NOTE]
104-
> With the release of iOS 13, you can only receive silent notifications using token based authentication. If you are using certificate-based authentication for your APNS credentials, you must switch to using token-based authentication.
104+
> With the release of iOS 13, you can only receive silent notifications using token based authentication. If you are using certificate-based authentication for your APNS credentials, you must switch to using [token-based authentication](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/establishing_a_token-based_connection_to_apns).
105105
106106
A certificate is required to enable the notification hub to work with **APNS**. This can be done in one of two ways:
107107

0 commit comments

Comments
 (0)