Back4app issue in registering device with ionic 3
Back4app issue in registering device with ionic 3 I m trying to use back4app for push notification. For this I have installed back4app 's ionic sdk (https://www.back4app.com/docs/ionic/parse-ionic-sdk) like this back4app back4app npm install parse npm install parse then in my app.component.ts I imported parse app.component.ts import Parse from 'parse'; and in platform ready Parse.serverURL = "https://parseapi.back4app.com/"; Parse.initialize("APP_ID_HERE", "JAVASCRIPT_KEY"); //I have used real keys from back4app dashboard. let install = new Parse.Installation(); install.save(null, { success: (install) => { // Execute any logic that should take place after the object is saved. // console.clear(); console.error('New object created with objectId: ' + install.id); }, error: (install, error) => { // Execute any logic that should take place if the save fails. // error is a Parse.Error with...