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
Asynchronous Push to IOS not working without giving any error just callback function never called.
if i send the notification like below the on_response never being called without any error
Pigeon.APNS.push(notification, on_response: on_response)
if i send the notification like below
{:ok, pid} = Pigeon.APNS.start_connection(cert: apns_cert, key: apns_key, mode: apns_mode)
Pigeon.APNS.push(notification, to: pid)
The notifications work properly then.
Note: configuration and certs are all ok and the code working in older version of elixir and Erlang
The text was updated successfully, but these errors were encountered:
Environment
Asynchronous Push to IOS not working without giving any error just callback function never called.
if i send the notification like below the on_response never being called without any error
Pigeon.APNS.push(notification, on_response: on_response)
if i send the notification like below
{:ok, pid} = Pigeon.APNS.start_connection(cert: apns_cert, key: apns_key, mode: apns_mode)
Pigeon.APNS.push(notification, to: pid)
The notifications work properly then.
Note: configuration and certs are all ok and the code working in older version of elixir and Erlang
The text was updated successfully, but these errors were encountered: