Plugin info

Total downloads: 1,151
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 11/24/2020 (1863 days ago)
Added to WordPress: 7/13/2020 (5 years old)
Minimum WordPress version: 4.7
Tested up to WordPress version: 5.5.17
Minimum PHP version: 7.0

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 1863 days ago

20/100

Is Fusion Web App abandoned?

Possibly abandoned (last update 1863 days ago).

Compatibility

Requires WordPress: 4.7
Tested up to: 5.5.17
Requires PHP: 7.0

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

RegisterONE – Enterprise Event Management & Ticketing
Rating 5.0/5 (3 reviews)Active installs 30
LC Expo Push Notifications
Rating 0.0/5 (0 reviews)Active installs 10

Description

This is a free plugin to send push notifications using Expo Api https://expo.io/notifications. In order to use this plugin, you need an App built with React Native and Expo. This plugin creates an API to interact with your native App and stores users unique push tokens to eb able to send them notifications from your Admin Panel.

Characteristics

  1. Send push notifications
  2. Register screens for your App and redirect users to specific content when they open notifications.
  3. Keep track of all your notifications sent and the users registered to your App.
  4. Save unfinished push notifications as draft and return later to finish and send them.

Rest API

Fusion Web App registers the next API routes for you to connect to your wordpress site.

Note: We strongly recommend to use htpps in order to protect your site.

– your_site/wp-json/app/appregister-user-token
Type: POST
Action: It registers the user’s push token and stores the information in the database.
Authentication: Basic authentification by providing user credentials.
Response: [success: true] – status 201. Else [success: false, error: error_code] – status 201.
Params:
$username: A real active user in your wordpress site. It does not need to have admin roles, a subscriber is enough.
$password: The password for the user provided.
$installation_id: The Expo installation ID. Use import Constants from ‘expo-constants’; Constants.installationId.
$name_device: The name of the user’s device Use import Constants from ‘expo-constants’; Constants.deviceName.
$platform: only accepts ‘ios’ or ‘android’. Use import { Platform } from ‘react-native’; Platform.OS.
$token: Expo push notification token. For more info on this read the documentation.

– your_site/wp-json/app/remove-user-token
Type: POST
Authentication: Basic authentification by providing user credentials.
Response: [device_removed: true] – status 201. Else [device_removed: false, error: error_code] – status 201.
Action: It removes the user’s push token. Use this route when your users logout from your application and stop sending them push notifications. Also, you can use it in case your app allows users to choose whether to receive or not notifications in the settings.
Params:
$username: A real active user in your wordpress site. It does not need to have admin roles, a subscriber is enough.
$password: The password for the user provided.
$installation_id: The Expo installation ID. Use import Constants from ‘expo-constants’; Constants.installationId.
$token: Expo push notification token. For more info on this read the documentation.

– your_site/wp-json/app/get-main-categories
Type: GET
Authentication: None
Response: Array([‘blogs’ => $blogs, ‘audios’ => $audios, ‘videos’ => $videos ])
Action: Use this route to fetch the main categories (those without parents) of your website.
Params: None.

Installation

No installation instructions available

Frequently Asked Questions

How can I use it?

In order to use this plugin, you need an App built with React Native and Expo. This plugin creates an API to interact with your native App and stores users unique push tokens to eb able to send them notifications from your Admin Panel.

Is it free?

Yes.

Review feed

No reviews available

Screenshots

  1. This screen shot description corresponds to screenshot-1.(png).

    This screen shot description corresponds to screenshot-1.(png).

  2. This screen shot description corresponds to screenshot-2.(png).

    This screen shot description corresponds to screenshot-2.(png).

  3. This screen shot description corresponds to screenshot-3.(png).

    This screen shot description corresponds to screenshot-3.(png).

Changelog

1.0.0

First realease.

1.0.1

Push token fixed.