Skip to content

Commit a1b2849

Browse files
committed
Adding configure on portal info and links
1 parent 1cce5ea commit a1b2849

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

articles/notification-hubs/notification-hubs-push-notification-http2-token-authentification.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ms.workload: mobile
1212
ms.tgt_pltfrm: mobile-multiple
1313
ms.devlang: dotnet
1414
ms.topic: article
15-
ms.date: 11/09/2019
15+
ms.date: 11/14/2019
1616
ms.author: sethm
1717
ms.reviewer: jowargo
1818
ms.lastreviewed: 02/13/2019
@@ -65,7 +65,7 @@ The authentication token can be downloaded after you generate a token for your a
6565

6666
### Configure via the .NET SDK
6767

68-
You can configure your hub to use token based authentication using our [latest client SDK](https://www.nuget.org/packages/Microsoft.Azure.NotificationHubs).
68+
You can configure your hub to use token based authentication using our [latest client SDK](https://www.nuget.org/packages/Microsoft.Azure.NotificationHubs), or [using the Azure portal](create-notification-hub-portal.md).
6969

7070
Token-based credentials are composed of the following fields:
7171

@@ -79,7 +79,7 @@ Here's a code sample illustrating the correct usage:
7979

8080
```csharp
8181
NamespaceManager nm = NamespaceManager.CreateFromConnectionString(_endpoint);
82-
string token = "YOUR TOKEN HERE";
82+
string token = "YOUR PRIVATE KEY HERE";
8383
string keyId = "YOUR KEY ID HERE";
8484
string appName = "YOUR APP NAME HERE";
8585
string appId = "YOUR APP ID HERE";
@@ -88,3 +88,8 @@ desc.ApnsCredential = new ApnsCredential(token, keyId, appId, appName);
8888
desc.ApnsCredential.Endpoint = @"https://api.development.push.apple.com:443/3/device";
8989
nm.UpdateNotificationHubAsync(desc);
9090
```
91+
92+
## Next steps
93+
94+
* [Create an Azure notification hub in the Azure portal](create-notification-hub-portal.md)
95+
* [Configure a notification hub in the Azure portal](create-notification-hub-portal.md)

0 commit comments

Comments
 (0)