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
+20-6
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,12 @@
1
-
# Push Notification Server Framework for Apple Push Notification service
1
+
# Push Notification Server Framework
2
2
3
3
## Introduction
4
-
`PushNotificationServerFramework` is an open-source project designed to offer a template for creating remote push notification servers for iOS applications. It simplifies the process of registering devices with the server and provides services for storing, fetching, and clearing device information.
4
+
`PushNotificationServerFramework` is an open-source project designed to offer a template for creating remote push notification servers for iOS applications via [Apple Push Notification service](https://developer.apple.com/documentation/usernotifications/setting_up_a_remote_notification_server/sending_notification_requests_to_apns).
5
5
6
-
Apple Push Notification service (APNs) is a cloud service that allows approved third-party apps installed on Apple devices to send push notifications from a remote server to users over a secure connection.
6
+
It simplifies the process of registering devices with the server and provides services for storing, fetching, and clearing device information, in addition to providing endpoints for sending push notifications to these devices.
7
7
8
8
### Features
9
+
-**Premade Models and Entities**: Includes premade models and entities for device and message information.
9
10
-**Device Endpoints**: Facilitates registering and fetching devices with the server.
10
11
-**Push Endpoints**: Provides endpoints for sending push notifications to devices.
11
12
-**Data Persistence**: Utilizes SQLAlchemy ORM for managing database operations.
@@ -47,8 +48,16 @@ To start the server, run the following command:
47
48
python main.py
48
49
```
49
50
50
-
# Endpoints
51
-
## Devices API
51
+
## Client-Side Implementation
52
+
To implement push notifications in an iOS application, follow the steps below:
53
+
1. Register the application for push notifications.
54
+
- See [Apple Developer documentation](https://developer.apple.com/documentation/usernotifications/registering_your_app_with_apns) for more information.
55
+
2. Request permission from the user to send push notifications.
56
+
3. Register the device with the server.
57
+
- Post the device token to the `/devices/register` endpoint.
58
+
59
+
60
+
## Device Endpoints
52
61
#### Register a Device
53
62
-**Endpoint**: `/devices/register`
54
63
-**Method**: `POST`
@@ -67,7 +76,7 @@ python main.py
67
76
-**Endpoint**: `/devices/clear`
68
77
-**Method**: `GET`
69
78
70
-
## Push API
79
+
## Push Endpoints
71
80
#### Send a Push Notification
72
81
-**Endpoint**: `/push/send`
73
82
-**Method**: `POST`
@@ -92,6 +101,11 @@ The `Device` entity and its model represent a device registered with the server.
92
101
-`model`: The model of the device. (Optional, String)
93
102
-`localizedModel`: The model of the device as a localized string. (Optional, String)
94
103
104
+
### FastAPI CORS Middleware
105
+
This middleware was left in the project to allow for cross-origin requests during development. This decision was made to enable CORS with frontend applications during development. However, it is not recommended to enable CORS in production environments as it can lead to security vulnerabilities.
106
+
107
+
**Note**: CORS is a browser security feature that prevents cross-origin requests. It does not affect requests from iOS applications.
108
+
95
109
## Contributing
96
110
Contributions to this repository are welcome. Please follow the standard GitHub pull request process to propose changes.
0 commit comments