Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
alexb4a committed May 15, 2024
1 parent 84bc770 commit dfbbace
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
# WatchOsPushNotification
A sample application to receive Push Notifications on WatchOS devices (Apple Watch) using the ParseSwift SDK

# Don't forget to get:
- Your App's Bundle ID (case sensitive, from XCode)
- Your Team ID (from https://developer.apple.com on the top right section, under your username, a 10 characters String)
- Your Key ID (From your certificate download page or from the name of the downloaded file such as: AuthKey_ABCDEFGHIJ.p8 , where ABCDEFGHIJ is the Key ID)
- Upload your certificate as Development

# Here's how to test it:
- Send a message from the Dashboard -> More -> Push
- Send a message from code:

```
Parse.Push.send(
{
where: {},
data: {
alert: "GCM",
badge: 123,
title: 'Test title'
}
},
{ useMasterKey: true },
);
```

0 comments on commit dfbbace

Please sign in to comment.