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
Is Parse Server going to be able to send Client Push Notifications or am I going to have to start looking for a new Push Provider. If so, whats the best one to go with that allows Client Push like Parse
This is only thing that is keeping me from moving to Parse Server
I also have Push Notifications setup with Parse Server but I can't seem to send Notifications with the self-hosted Parse Dashboard, it always says Push Saved.
Would this be possible through Cloud Code instead? If so where would I be able to find the best information on how to write the cloud code and integrate it into my app
Thanks in Advance
var api = new ParseServer({ databaseURI: databaseUri || 'mongodb://mogsten@hiddenServer.com', cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js', appId: process.env.APP_ID || 'hiddenAppID', masterKey: process.env.MASTER_KEY || 'hiddenMasterKey', //Add your master key here. Keep it secret! serverURL: process.env.SERVER_URL || 'http://companywebsite.com', // Don't forget to change to https if needed fileKey: 'hiddenFileKey', push: { ios: [ { pfx: 'dev.p12', // Dev PFX or P12 bundleId: 'com.SSKLApps.RoB', production: false // Dev }, { pfx: 'prod.p12', // Prod PFX or P12 bundleId: 'com.SSKLApps.RoB', production: true // Prod } ] } });
Check out this issue for an ideal bug report. The closer your issue report is to that one, the more likely we are to be able to help, and the more likely we will be to fix the issue quickly!
For implementation related questions or technical support, please refer to the Stack Overflow and Server Fault communities.
Make sure these boxes are checked before submitting your issue -- thanks for reporting issues back to Parse Server!
Parse Server doesn't support client push for security reasons. We recommend you create a cloud code function and use that to send your pushes. The dashboard should also work as long as you have push configured correctly.
Is Parse Server going to be able to send Client Push Notifications or am I going to have to start looking for a new Push Provider. If so, whats the best one to go with that allows Client Push like Parse
This is only thing that is keeping me from moving to Parse Server
I also have Push Notifications setup with Parse Server but I can't seem to send Notifications with the self-hosted Parse Dashboard, it always says Push Saved.
Would this be possible through Cloud Code instead? If so where would I be able to find the best information on how to write the cloud code and integrate it into my app
Thanks in Advance
var api = new ParseServer({ databaseURI: databaseUri || 'mongodb://mogsten@hiddenServer.com', cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js', appId: process.env.APP_ID || 'hiddenAppID', masterKey: process.env.MASTER_KEY || 'hiddenMasterKey', //Add your master key here. Keep it secret! serverURL: process.env.SERVER_URL || 'http://companywebsite.com', // Don't forget to change to https if needed fileKey: 'hiddenFileKey', push: { ios: [ { pfx: 'dev.p12', // Dev PFX or P12 bundleId: 'com.SSKLApps.RoB', production: false // Dev }, { pfx: 'prod.p12', // Prod PFX or P12 bundleId: 'com.SSKLApps.RoB', production: true // Prod } ] } });
Check out this issue for an ideal bug report. The closer your issue report is to that one, the more likely we are to be able to help, and the more likely we will be to fix the issue quickly!
For implementation related questions or technical support, please refer to the Stack Overflow and Server Fault communities.
Make sure these boxes are checked before submitting your issue -- thanks for reporting issues back to Parse Server!
Environment Setup
Latest Version of Parse Server running on Ubuntu 14.0.4 x64 Digital Ocean VPS
Steps to reproduce
Logs/Trace
The text was updated successfully, but these errors were encountered: