Getting Started

How to use JustPush efficiently

The JustPush user manual is our manual and tutorial list explaining you on how to implement and use JustPush services. It describes the process of getting from downloading the app to working / implementing with various frameworks.


1

Download and install one of our apps

Our apps are offered across various platforms. Follow the individual instructions to download / install the various applications.

iOS
  1. Click the following link to install

Android
  1. Click the following link to install

Web (to be announced)

2

Find your API Key

Find your API as described in the dedicated API Key topic.

3

Send your first message

Find per programming language how you can send your first message. These examples do not use an SDK and are just setup to send your first message.

curl -X "POST" "https://api.justpush.io/messages" \
     -H 'Accept: application/json' \
     -H 'Content-Type: application/json; charset=utf-8' \
     -d $'{
  "message": "My First Message",
  "topic" : "Default",
  "title": "Bingo! I've just received my first message",
  "user": "REPLACE WITH API TOKEN"
}'

Checkout our SDK's to make your integration easier.

Last updated