<div dir="ltr">Greetings.<div><br></div><div>Ia have an error when i try to register an user in a Cordova app to the Unified Push Server. The error callback in this code:</div><div><br></div><div><div><i>function registerPush(alias) {</i></div><div><i>    if(typeof push !== &#39;undefined&#39;){</i></div><div><i>        console.log(&#39;Registering push notifications for: &#39; + alias);</i></div><div><i>        $.ajax({</i></div><div><i>            url: &quot;push-config.json&quot;,</i></div><div><i>            dataType: &quot;json&quot;</i></div><div><i>        }).then(function (pushConfig) {</i></div><div><i>            pushConfig.alias = alias;</i></div><div><i>            push.register(onNotification, successHandler, errorHandler, pushConfig);</i></div><div><i><br></i></div><div><i>            function successHandler() {</i></div><div><i>                console.log(&#39;Succesfully registered to aerogear push!&#39;);</i></div><div><i>            }</i></div><div><i><br></i></div><div><i>            function errorHandler(message) {</i></div><div><i>                console.log(&#39;Error registering aerogear push: &#39; + message);</i></div><div><i>            }</i></div><div><i>        });</i></div><div><i>    }</i></div><div><i>}</i></div></div><div><br></div><div>Gets called with a &#39;null&#39; message. Do you have any suggestions to debug this issue further? I&#39;ve tried re-issuing a new APN certiticate but it didn&#39;t work.</div></div>