skip to Main Content

Flutter iOS push not being received

I have an issue with push notifications not being received on an iOS device in my Flutter app. I tried to follow this guide: https://firebase.flutter.dev/docs/messaging/apple-integration/ Steps I have made to configure my push notifications: Register my APN from developer.apple.com on…

VIEW QUESTION

Php versions – PHP Curl – Received HTTP/0.9 when not allowed

I stumbled over a weird behavior when I try to send a post HTTP/2.0 request to apples push service: $http2ch = curl_init(); curl_setopt($http2ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_2_0); curl_setopt($http2ch, CURLOPT_URL, 'https://api.push.apple.com/3/device/megauniquedevicetokendummy'); curl_setopt($http2ch, CURLOPT_PORT, 443); curl_setopt($http2ch, CURLOPT_HTTPHEADER, $httpHeader); curl_setopt($http2ch, CURLOPT_POST, true); curl_setopt($http2ch, CURLOPT_POSTFIELDS, $body);…

VIEW QUESTION
Back To Top
Search