delitestudio

Results 6 comments of delitestudio

Hi @ap4y, could you give an eye to this? Without the patch covers will not show correctly.

Hello @greg-db and thanks for your fast answer. > Is the concern that it may surprise users that they are automatically migrated again after uninstalling the app once, despite the...

@jonas0616 We have implemented a custom message that inherits from Message and handles the Safari payload. We have sent a [pull request](https://github.com/immobiliare/ApnsPHP/pull/116) with this integration.

Here it is an example on how to use it: ``` $sender = new PHP_GCM\Sender($api_key); $payload = Minishlink\WebPush\Encryption::padPayload(json_encode($payload_data), false); $encrypted = Minishlink\WebPush\Encryption::encrypt( $payload, $localPublicKey, $salt, version_compare(phpversion(), '7.1', '>=') ); $message...

Hello @lkorth, we have implemented some properties on the Message class (publicKey, salt, rawData) with getters and setters. We have then modified the Sender to intercept those properties (only if...

We will create the PR as soon as possible. Unfortunately the encryption stuff is really complex and we are using code from an external library ([WebPush](https://github.com/Minishlink/web-push)) that depends from many...