通过powershell在azure通知中心设置GCM和APNS api密钥

时间:2017-11-30 05:35:09

标签: powershell azure push-notification notifications

我试图通过powershell提供通知。我能够创建命名空间和集线器,但无法设置GCM API密钥或将证书添加到APNS提供商。我使用输入文件来设置通知中心的值。以下是样本。

用于配置通知中心的Powershell命令:

New-AzureRmNotificationHub -Namespace $Namespace  -ResourceGroup 
$ResourceGroupName -InputFile 
"D:Source\Deployment\NotificationConfiguration.json"

Json文件内容如下:

{
"Name": "LocalNotificationHub",
"Location": "West Europe",
"GcmCredential": {
"properties": {
  "googleApiKey":
    "<api key>",
  "gcmEndpoint": "https://android.googleapis.com/gcm/send"
    }
  }
} 

我能够在文件中创建名称和位置指定为u =的通知中心,但它没有获取GCM凭据。

提前致谢。

0 个答案:

没有答案