2

I have an android app, made in Java using eclipse. It receives push notifications from parse.com just fine but now instead of logging on to parse.com to send the push notifications, I want it to be possible to send notifications from the server (without using a webview; the server is a desktop program in Java).

Can I somehow use the parse SDK in a desktop java program or is there another way to do this? Any help would be great!

PS I googled thoroughly and the docs don't cover java programs (only android).

2
  • But the docs cover the REST-API which can be used from everything that can make HTTP requests. Sending pushes via the REST-API: parse.com/docs/push_guide#sending/REST Commented Mar 7, 2015 at 18:21
  • 1
    So sorry, I never noticed the rest api! For some reason docs only showed me android, ios and windows. Thanks!! Commented Mar 7, 2015 at 18:23

1 Answer 1

1

As far as I know there is a open source library namely Parse4J where you can use your server with integration of it. Actually, it uses parse REST API as underlying architecture. Parse4j currently does not support sending push notification. However, you can write the send push procedure as cloud function and you can trigger from your server via Parse4j. This actually solves your server send push capability.

Hope this helps. Regards.

Sign up to request clarification or add additional context in comments.

4 Comments

how can I write REST API using Parse4j ?
Dear Mahenda; Parse4j is written on top of Parse Rest API. To use Parse4j, visit its github page and follow instruction. Regards.
can you give me github link ?
kingspeech can you give me Github link ?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.