Skip to content

Commit

Permalink
Updated APNS related documentation for 2017-04-01 version (#8664)
Browse files Browse the repository at this point in the history
* Updated APNS related documentation for 2017-04-01 version

* Additional changes

* Addressed code review feedback

* Added default gcmEndpoint value
  • Loading branch information
stankovski authored Jun 15, 2020
1 parent ac46e15 commit c9aad88
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1898,38 +1898,38 @@
"properties": {
"apnsCertificate": {
"type": "string",
"description": "The APNS certificate."
"description": "The APNS certificate. Specify if using Certificate Authentication Mode."
},
"certificateKey": {
"type": "string",
"description": "The certificate key."
"description": "The APNS certificate password if it exists."
},
"endpoint": {
"type": "string",
"description": "The endpoint of this credential."
"description": "The APNS endpoint of this credential. If using Certificate Authentication Mode and Sandbox specify 'gateway.sandbox.push.apple.com'. If using Certificate Authentication Mode and Production specify 'gateway.push.apple.com'. If using Token Authentication Mode and Sandbox specify 'https://api.development.push.apple.com:443/3/device'. If using Token Authentication Mode and Production specify 'https://api.push.apple.com:443/3/device'."
},
"thumbprint": {
"type": "string",
"description": "The APNS certificate Thumbprint"
"description": "The APNS certificate thumbprint. Specify if using Certificate Authentication Mode."
},
"keyId": {
"type": "string",
"description": "A 10-character key identifier (kid) key, obtained from your developer account"
"description": "A 10-character key identifier (kid) key, obtained from your developer account. Specify if using Token Authentication Mode."
},
"appName": {
"type": "string",
"description": "The name of the application"
"description": "The name of the application or BundleId. Specify if using Token Authentication Mode."
},
"appId": {
"type": "string",
"description": "The issuer (iss) registered claim key, whose value is your 10-character Team ID, obtained from your developer account"
"description": "The issuer (iss) registered claim key. The value is a 10-character TeamId, obtained from your developer account. Specify if using Token Authentication Mode."
},
"token": {
"type": "string",
"description": "Provider Authentication Token, obtained through your developer account"
"description": "Provider Authentication Token, obtained through your developer account. Specify if using Token Authentication Mode."
}
},
"description": "Description of a NotificationHub ApnsCredential."
"description": "Description of a NotificationHub ApnsCredential. Note that there is no explicit switch between Certificate and Token Authentication Modes. The mode is determined based on the properties passed in."
},
"ApnsCredential": {
"properties": {
Expand Down Expand Up @@ -1972,7 +1972,7 @@
"properties": {
"gcmEndpoint": {
"type": "string",
"description": "The GCM endpoint."
"description": "The FCM legacy endpoint. Default value is 'https://fcm.googleapis.com/fcm/send'"
},
"googleApiKey": {
"type": "string",
Expand Down

0 comments on commit c9aad88

Please sign in to comment.