Skip to content

Commit 77a5273

Browse files
committedNov 15, 2023
Include CORS information, client-side implementation steps
1 parent bc9a58c commit 77a5273

File tree

1 file changed

+20
-6
lines changed

1 file changed

+20
-6
lines changed
 

‎README.md

+20-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
# Push Notification Server Framework for Apple Push Notification service
1+
# Push Notification Server Framework
22

33
## 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).
55

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.
77

88
### Features
9+
- **Premade Models and Entities**: Includes premade models and entities for device and message information.
910
- **Device Endpoints**: Facilitates registering and fetching devices with the server.
1011
- **Push Endpoints**: Provides endpoints for sending push notifications to devices.
1112
- **Data Persistence**: Utilizes SQLAlchemy ORM for managing database operations.
@@ -47,8 +48,16 @@ To start the server, run the following command:
4748
python main.py
4849
```
4950

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
5261
#### Register a Device
5362
- **Endpoint**: `/devices/register`
5463
- **Method**: `POST`
@@ -67,7 +76,7 @@ python main.py
6776
- **Endpoint**: `/devices/clear`
6877
- **Method**: `GET`
6978

70-
## Push API
79+
## Push Endpoints
7180
#### Send a Push Notification
7281
- **Endpoint**: `/push/send`
7382
- **Method**: `POST`
@@ -92,6 +101,11 @@ The `Device` entity and its model represent a device registered with the server.
92101
- `model`: The model of the device. (Optional, String)
93102
- `localizedModel`: The model of the device as a localized string. (Optional, String)
94103

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+
95109
## Contributing
96110
Contributions to this repository are welcome. Please follow the standard GitHub pull request process to propose changes.
97111

0 commit comments

Comments
 (0)