Skip to content

Commit 2c08376

Browse files
author
Delora Bradish
committed
added changes to TOC
1 parent 00c8081 commit 2c08376

File tree

3 files changed

+11
-15
lines changed

3 files changed

+11
-15
lines changed

articles/notification-hubs/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
href: create-notification-hub-portal.md
1414
- name: Create a notification hub - Azure CLI
1515
href: create-notification-hub-azure-cli.md
16-
- name: Configure a notification hub - Azure portal
16+
- name: Configure a notification hub
1717
href: configure-notification-hub-portal-pns-settings.md
1818
- name: Tutorials
1919
items:

articles/notification-hubs/configure-notification-hub-portal-pns-settings.md

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Learn how to set up Azure Notification Hubs in the Azure portal by
44
services: notification-hubs
55
author: sethmanheim
66
manager: femila
7-
editor: jwargo
7+
editor: dbradish-microsoft
88

99
ms.service: notification-hubs
1010
ms.workload: mobile
@@ -15,13 +15,13 @@ ms.reviewer: jowargo
1515
ms.lastreviewed: 02/14/2019
1616
---
1717

18-
# Set up push notifications in a notification hub in the Azure portal
18+
# Quickstart: Set up push notifications in a notification hub
1919

2020
Azure Notification Hubs provides a push engine that's easy to use and that scales out. Use Notification Hubs to send notifications to any platform (iOS, Android, Windows, Baidu) and from any back end (cloud or on-premises). For more information, see [What is Azure Notification Hubs?](notification-hubs-push-notification-overview.md).
2121

22-
In this quickstart, you'll use the platform notification system (PNS) settings in Notification Hubs to set up push notifications on multiple platforms. The quickstart shows you the steps to take in the Azure portal.
22+
In this quickstart, you'll use the platform notification system (PNS) settings in Notification Hubs to set up push notifications on multiple platforms. The quickstart shows you the steps to take in the Azure portal. **Google Firebase Cloud Messaging** includes instructions for using the Azure CLI.
2323

24-
If you haven't already created a notification hub, create one now. For more information, see [Create an Azure notification hub in the Azure portal](create-notification-hub-portal.md).
24+
If you haven't already created a notification hub, create one now. For more information, see [Create an Azure notification hub in the Azure portal](create-notification-hub-portal.md) or [Create an Azure notification hub using the Azure CLI](create-notification-hub-azure-cli)
2525

2626
## Apple Push Notification Service
2727

@@ -54,15 +54,13 @@ For more information, see [Push notifications to iOS by using Azure Notification
5454
To set up push notifications for Google Firebase Cloud Messaging (FCM):
5555

5656
1. In the Azure portal, on the **Notification Hub** page, select **Google (GCM/FCM)** from the left menu.
57-
2. Paste the **API Key** for the FCM project that you saved earlier.
57+
2. Paste the **API Key** for the Google Firebase Cloud Messaging (FCM) project that you saved earlier.
5858
3. Select **Save**.
5959

6060
![Screenshot that shows how to configure Notification Hubs for Google FCM](./media/notification-hubs-android-push-notification-google-fcm-get-started/fcm-server-key.png)
6161

6262
When you complete these steps, an alert indicates that the notification hub has been successfully updated. The **Save** button is disabled.
6363

64-
For more information on using Azure Notification Hubs and Firebase Cloud Messaging (FCM) to push notifications to an Android application, see [Tutorial: Send push notifications to Android devices using Firebase](notification-hubs-android-push-notification-google-fcm-get-started.md).
65-
6664
# [Azure CLI](#tab/azure-cli)
6765

6866
### Prerequisites
@@ -82,7 +80,7 @@ Before you begin, you must have the following:
8280
az notification-hub credential gcm update --resource-group spnhubrg --namespace-name spnhubns --notification-hub-name spfcmtutorial1nhub --google-api-key myKey
8381
```
8482

85-
2. The Android App needs a connection string to connect with the notification hub. Use the [az notification-hub authorization-rule list](/cli/azure/ext/notification-hub/notification-hub/authorization-rule#ext-notification-hub-az-notification-hub-authorization-rule-list) command to list the available access policies. Run the [az notification-hub authorization-rule list-keys](/cli/azure/ext/notification-hub/notification-hub/authorization-rule#ext-notification-hub-az-notification-hub-authorization-rule-list-keys) command to get the access policy connection strings. Specify the **primaryConnectionString** or **secondaryConnectionString** in the `--query` parameter to get the primary connection string directly.
83+
2. The Android App needs a connection string to connect with the notification hub. Use the [az notification-hub authorization-rule list](/cli/azure/ext/notification-hub/notification-hub/authorization-rule#ext-notification-hub-az-notification-hub-authorization-rule-list) command to list the available access policies. Use the [az notification-hub authorization-rule list-keys](/cli/azure/ext/notification-hub/notification-hub/authorization-rule#ext-notification-hub-az-notification-hub-authorization-rule-list-keys) command to get the access policy connection strings. Specify the **primaryConnectionString** or **secondaryConnectionString** in the `--query` parameter to get the primary connection string directly.
8684

8785
```azurecli
8886
#list access policies for a notification hub
@@ -105,14 +103,12 @@ Before you begin, you must have the following:
105103
az notification-hub test-send --resource-group spnhubrg --namespace-name spnhubns --notification-hub-name spfcmtutorial1nhub --notification-format gcm --payload "{\"data\":{\"message\":\"my JSON string\"}}"
106104
```
107105

108-
### See also
109-
110-
* Get Azure CLI references for other platforms with the [az notification-hub credential](/cli/azure/ext/notification-hub/notification-hub/credential) command.
111-
112-
* For more information on using Azure Notification Hubs and Firebase Cloud Messaging (FCM) to push notifications to an Android application, see [Tutorial: Send push notifications to Android devices using Firebase](notification-hubs-android-push-notification-google-fcm-get-started.md).
106+
Get Azure CLI references for other platforms with the [az notification-hub credential](/cli/azure/ext/notification-hub/notification-hub/credential) command.
113107

114108
---
115109

110+
For more information on using Azure Notification Hubs and Firebase Cloud Messaging (FCM) to push notifications to an Android application, see [Send push notifications to Android devices using Firebase](notification-hubs-android-push-notification-google-fcm-get-started.md).
111+
116112
## Windows Push Notification Service
117113

118114
To set up Windows Push Notification Service (WNS):

articles/notification-hubs/create-notification-hub-portal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ ms.reviewer: jowargo
1515
ms.lastreviewed: 02/14/2019
1616
---
1717

18-
# Create an Azure notification hub in the Azure portal
18+
# Quickstart: Create an Azure notification hub in the Azure portal
1919
Azure Notification Hubs provide an easy-to-use and scaled-out push engine that allows you to send notifications to any platform (iOS, Android, Windows, Kindle, Baidu, etc.) from any backend (cloud or on-premises). For more information about the service, see [What is Azure Notification Hubs?](notification-hubs-push-notification-overview.md).
2020

2121
In this quickstart, you create a notification hub in the Azure portal. The first section gives you steps to create a Notification Hubs namespace and a hub in that namespace. The second section gives you steps to create a notification hub in an existing Notification Hubs namespace.

0 commit comments

Comments
 (0)