Sockki - Websocket Push Notifications Apk

Sockki - Websocket Push Notifications Apk

Latest version 1.2.0
11 Sep 2017

Older Versions

Apk Infos

Version1.2.0
Rating5.0/5, based on 1 votes
Size‎9 MB
Requires AndroidAndroid 4.1+ (Jelly Bean)
Author's NotesConnect to a WebSocket server and receive push notifications from it

About Sockki - Websocket Push Notifications APK

Sockki - Websocket Push Notifications APK Download for Android
Sockki - Websocket Push Notifications APK Download for Android

Description

Use Sockki to connect to services that have integrated it in order to receive mobile notifications.

Developers, integrate your service with Sockki to push notifications directly to your client's mobile device using a WebSocket server.

Client Setup:

1. Get your server URL and API key from your notification service provider
2. Paste those settings under the "Service" tab and set your notification settings
3. Start the service and connect to the server to start receiving notifications

Developer Setup:

1. Create a websocket server to accept connections from clients
2. Create API keys to issue to each client so that they can be uniquely identified on your server
3. Provide your users with their API key and the server URL
4. When the user starts the service, the client will open up a socket connection with the server
5. After a connection is opened, the client will send JSON message as follows: "{ request: "SockkiClient-Auth", data: API_KEY }"
6. You must create a method to handle this message. Use the API key to authenticate the websocket connection and store that websocket with your user info for later use
7. If a client sends an invalid API key, return JSON "{ error: true }" to trigger the invalid API key message
8. If using API keys, you should also terminate the websocket of un-authenticated clients and clients who have not attempted to authenticate in 15 seconds
9. To send a notification to a client, send a message to the websocket as follows: "{ request: "SockkiClient-Notification", data: config }"
10. The config object can consist of any property from the localNotification method in the NPM package react-native-push-notification by zo0r

Latest updates

What's new in version 1.2.0

Increased reliability

How to install Sockki - Websocket Push Notifications APK on Android phone or tablet?

Download Sockki - Websocket Push Notifications APK file from ApkClean, then follow these steps:

Update Phone Settings

  • Go to your phone Settings page
  • Tap Security or Applications (varies with device)
  • Check the Unknown Sources box
  • Confirm with OK

Go to Downloads

  • Open Downloads on your device by going to My Files or Files
  • Tap the APK file you downloaded (com.socketnotifications-v1.2.0-ApkClean.apk)
  • Tap Install when prompted, the APK file you downloaded will be installed on your device.

Older Versions

1.2.0 (3)9 MB

Questions & Answers

Q: What is an APK File?

A: Just like Windows (PC) systems use an .exe file for installing software, Android does the same. An APK file is the file format used for installing software on the Android operating system.

Q: If I install an APK from this website, will I be able to update the app from the Play Store?

A: Yes, absolutely. The Play Store installs APKs it downloads from Google's servers, and sideloading from a site like ApkClean.net goes through a very similar process, except you're the one performing the downloading and initiating the installation (sideloading).
As soon as the Play Store finds a version of the app newer than the one you've sideloaded, it will commence an update.

Q: Why ApkClean.net can guarantee APK 100% safe?

A: Whenever someone wants to download an APK file from ApkClean.net, we'll check the corresponding APK file on Google Play and allow user download it directly (of course, we'll cache it on our server). If the APK file does not exist on Google Play, we'll search it in our cache.

Q: What are Android App permissions?

A: Apps require access to certain systems within your device. When you install an application, you are notified of all of the permissions required to run that application.

Don't hesitate to contact us if you have any questions or concerns.

(*) is required

User's Reivew

5 ★Hi! Looks useful, but I can't get it to work. What should be the server response if the client authenticates successfully? Edit: Thanks for the reply!