wp_notify 0.0.1 copy "wp_notify: ^0.0.1" to clipboard
wp_notify: ^0.0.1 copied to clipboard

outdated

Send push notification from WordPress using Firebase Cloud Messaging. This package automatically pushes your FCM token to WordPress to start sending notifications. Features include the ability to assi [...]

WP Notify for Flutter - Send push notifications from WordPress using Firebase Cloud Messaging #

Official WooSignal package

API features: #

Notifications

  • Automatically sends the device token to your WordPress site for a given user/device
  • You can assign a token to a WordPress user
  • Send notifications from WordPress with our API

To use this Flutter package you must have the WP Notify Plugin installed first on your WordPress site, you can download it via the WooSignal website.

Getting Started #

In your flutter project add the dependency:

dependencies:
  ...
  wp_notify: ^0.0.1

Usage example #

Import wp_notify.dart

import 'package:wp_notify/wp_notify.dart';

Example using WP Notify #

import 'package:wp_notify/wp_notify.dart';
...

void main() {

WPNotifyAPI.instance.initWith(baseUrl: "https://mysite.com");

...

Available API Requests #

WordPress - wpNotifyStoreToken

  • Used for storing an FCM token
WPStoreTokenResponse wpStoreTokenResponse;
try {
    wpStoreTokenResponse = WPNotifyAPI.instance.api((request) => request.wpNotifyStoreToken(token: token, userId: usersId));
} on Exception catch (e) {
    print(e);
}

WordPress - Updating a tokens status (e.g. if you want to turn off notifications)

  • Used for updating the status of an FCM token
WPUpdateTokenResponse wpUpdateTokenResponse;
try {
     wpUpdateTokenResponse = WPNotifyAPI.instance.api((request) => request.wpNotifyUpdateToken(token: token, status: true));
} on Exception catch (e) {
    print(e);
}

For help getting started with WooSignal, view our online documentation, which offers a more detailed guide.

Usage #

To use this plugin, add wp_notify as a dependency in your pubspec.yaml file.

Note #

Install WordPress plugin "WP Notify" 1.0.x or later for version 0.0.1

Disclaimer: This plugin is not affiliated with or supported by Automattic, Inc. All logos and trademarks are the property of their respective owners.

21
likes
30
pub points
42%
popularity

Publisher

verified publisherwoosignal.com

Send push notification from WordPress using Firebase Cloud Messaging. This package automatically pushes your FCM token to WordPress to start sending notifications. Features include the ability to assign a WordPress user with an FCM token and send push notifications to IOS/Android devices using our API in WordPress.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, http

More

Packages that depend on wp_notify