IOS Push Notification

IOS notification works as follows:

Pasted image 20230714080437.png

Provider

Send notifications request to Apple Push Notification Service (APNS), here is the sample payload

{ 
	"aps": {
		"alart": {
			"title": "my alert",
			"body": "hello world",
			"action-loc-key": "Okay"
		},
		"badge": 5
	}
}

APNS

Apple Push Notification Service (APNS)

IOS device

Client