You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+18-12Lines changed: 18 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
PushSharp v4.0
2
2
==============
3
3
4
-
PushSharp is a server-side library for sending Push Notifications to iOS/OSX (APNS), Android/Chrome (GCM), Windows/Windows Phone, Amazon (ADM) and Blackberry devices!
4
+
PushSharp is a server-side library for sending Push Notifications to iOS/OSX (APNS), Android/Chrome (GCM/FCM), Windows/Windows Phone, Amazon (ADM) and Blackberry devices!
5
5
6
6
PushSharp v3.0+ is a complete rewrite of the original library, aimed at taking advantage of things like async/await, HttpClient, and generally a better infrastructure using lessons learned from the old code.
7
7
@@ -102,13 +102,19 @@ fbs.Check ();
102
102
```
103
103
104
104
105
-
### GCM Sample Usage
105
+
### GCM/FCM Sample Usage
106
106
107
-
Here is how you would send a GCM Notification:
107
+
Here is how you would send a GCM/FCM Notification:
@@ -186,7 +192,7 @@ foreach (var regId in MY_REGISTRATION_IDS) {
186
192
gcmBroker.Stop ();
187
193
```
188
194
189
-
#### Components of a GCM Notification
195
+
#### Components of a GCM/FCM Notification
190
196
191
197
GCM notifications are much more customizable than Apple Push Notifications. More information about the messaging concepts and options can be found [here](https://developers.google.com/cloud-messaging/concept-options#components-of-a-message).
0 commit comments