Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parse Push Adapter is not availabe #555

Closed
adamofsky opened this issue Feb 21, 2016 · 1 comment
Closed

Parse Push Adapter is not availabe #555

adamofsky opened this issue Feb 21, 2016 · 1 comment

Comments

@adamofsky
Copy link

Everything works perfect in parse server but when i am trying to configure push notification i get following exceptions:
Android: I/ParseException=﹕ com.parse.ParseRequest$ParseRequestException: Push adapter is not availabe
IOS:[Error]: Push adapter is not availabe (Code: 115, Version: 1.12.0)
HTTP curl -X POST via Terminal: {"code":115,"error":"Push adapter is not available"}
I using Heroku/MongoDB,the repository is parse-server-example
I even tryed
push: {
adapter: ParsePushAdapter
}
this is my code:
var api = new ParseServer({
databaseURI: databaseUri,
cloud: process.env.CLOUD_CODE_MAIN || __dirname + '/cloud/main.js',
appId: process.env.APP_ID,
masterKey: process.env.MASTER_KEY,
fileKey:'filekey',
push: {
android: {
senderId: 'my sender id',
apiKey: 'my apiKey'
},
ios: [
{
pfx: '/developmentcertificate.p12',
bundleId: 'bundleId',
production: false // Dev
},
{
pfx: 'distributioncertificate.p12',
bundleId: 'bundleId',
production: true // Prod
}
]
}
});
This is my question on stackoverflow: http://stackoverflow.com/questions/35543279/parse-push-adapter-is-not-availabe-on-my-own-parse-server
Thank you for your advice.

@adamofsky
Copy link
Author

Solved by removing the app on Heroku and creating a new one

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant