前言介紹
- 這款 WordPress 外掛「Fusion Web App」是 2020-07-12 上架。
- 目前有 10 個安裝啟用數。
- 上一次更新是 2020-11-24,距離現在已有 1621 天。超過一年沒更新,安裝要確認版本是否可用。以及後續維護問題!
- 外掛最低要求 WordPress 4.7 以上版本才可以安裝。
- 外掛要求網站主機運作至少需要 PHP 版本 7.0 以上。
- 尚未有人給過這款外掛評分。
- 還沒有人在論壇上發問,可能目前使用數不多,還沒有什麼大問題。
外掛協作開發者
外掛標籤
app | web | expo | connect | push notifications |
內容簡介
這是一個免費的外掛,可使用Expo Api https://expo.io/notifications來發送推播通知。為了使用這個外掛,您需要使用React Native和Expo構建的應用程式。此外掛會創建一個API與原生應用程式進行互動,並存儲用戶的唯一推播令牌,以便從管理面板向他們發送通知。
特點
發送推播通知
為您的應用程式註冊螢幕,並在用戶打開推播通知時將其重定向到特定內容。
跟踪所有發送的通知和註冊到您的應用程式的用戶。
將未完成的推播通知保存為草稿,稍後返回以完成和發送它們。
REST API
Fusion Web App為您註冊了下一個API路線,以連接到您的WordPress站點。
注意:我們強烈建議使用htpps來保護您的網站。
– your_site/wp-json/app/appregister-user-token
類型:POST
操作:它註冊用戶的推播令牌並將信息存儲到數據庫中。
身份驗證:通過提供用戶憑據的基本身份驗證。
響應:[success: true] – 狀態201。否則[success: false,error:error_code] – 狀態201。
參數:
$username:您的WordPress網站中的實際活動用戶。它不需要具有管理員角色,訂閱者就足夠了。
$password:提供的用戶密碼。
$installation_id:Expo安裝ID。使用import Constants from ‘expo-constants’; Constants.installationId。
$name_device:用戶設備的名稱。使用import Constants from ‘expo-constants’; Constants.deviceName。
$platform:僅接受‘ios’或‘android’。使用import { Platform } from ‘react-native’; Platform.OS。
$token:Expo推播通知令牌。有關更多信息,請參閱文檔。
– your_site/wp-json/app/remove-user-token
類型:POST
身份驗證:通過提供用戶憑據的基本身份驗證。
響應:[device_removed: true] – 狀態201。否則[device_removed: false,error:error_code] – 狀態201。
操作:它刪除用戶的推播令牌。當您的用戶從您的應用程式登出並停止發送他們的推播通知時,使用此路線。此外,您可以在應用程式允許用戶在設置中選擇是否接收通知時使用它。
參數:
$username:您的WordPress網站中的實際活動用戶。它不需要具有管理員角色,訂閱者就足夠了。
$password:提供的用戶密碼。
$installation_id:Expo安裝ID。使用import Constants from ‘expo-constants’; Constants.installationId。
$token:Expo推播通知令牌。有關更多信息,請參閱文檔。
– your_site/wp-json/app/get-main-categories
類型:GET
身份驗證:無
響應:數組([‘blogs’ => $blogs,‘audios’ => $audios,‘videos’ => $videos])
操作:使用此路線來提取您網站的主要類別(那些沒有父母的類別)。
參數:無。
原文外掛簡介
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
Send push notifications
Register screens for your App and redirect users to specific content when they open notifications.
Keep track of all your notifications sent and the users registered to your App.
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.
各版本下載點
- 方法一:點下方版本號的連結下載 ZIP 檔案後,登入網站後台左側選單「外掛」的「安裝外掛」,然後選擇上方的「上傳外掛」,把下載回去的 ZIP 外掛打包檔案上傳上去安裝與啟用。
- 方法二:透過「安裝外掛」的畫面右方搜尋功能,搜尋外掛名稱「Fusion Web App」來進行安裝。
(建議使用方法二,確保安裝的版本符合當前運作的 WordPress 環境。
1.0.0 | 1.0.1 | 1.0.2 | 1.0.3 | trunk |
延伸相關外掛(你可能也想知道)
Build App Online 》此外掛可以協助您建立和執行 WooCommerce 手機應用程式。, 在 5 分鐘內建立您的手機應用程式。, 觀看我們關於建立 WooCommerce 手機應用程式的 YouTube 影片,...。
Web2application Convert your website to android and IOS apps with push notifications , web push , free ajax products search for woocommerce and many more advanced features 》關於 Web2application, Web2application 可將具有響應式設計的 WordPress 網站轉換為 iOS 和 Android 應用程式,並啟用高級功能,例如推播通知、原生索引條、...。
Appeto 》Appeto 是一個強大的波斯語在線應用程式生成器,可用於 Android、iOS 和 PWA。, 透過此外掛,您可以將您在 Appeto 面板所生成的應用程式連接到您的 WordPress...。
OS Integration 》現今的使用者都有各種不同的裝置,當您的網站被顯示、釘選或者新增至使用者的系統時,您的網站需要呈現最佳的表現。, WordPress 4.3 在設定中新增了「網站圖...。
Appful – WordPress to Native iOS/Android App in 5 Minutes 》總結:Appful®是一家建立設計精良、性能優異且費用只有每月數百美元起的高級應用程式機構。Appful的特色在於使用Native技術建立所有應用程式,提供個性化支援...。
WP Applink 》這是一個 WordPress 外掛,可以產生蘋果的 iTunes 聯盟連結,例如 iPhone、iPad、Mac 的應用程式、音樂、電影等等。, 使用這個外掛非常容易,因為您可以在文...。
iBuildApp 》在 5 分鐘內建立您的行動應用程式!, 將您的網站轉換為行動應用程式!在幾分鐘內為您的公司、部門、大學或朋友創建一個 Android 或 iPhone 應用程式!, 建立...。
Promote mobile app on website 》總結:, - 使用我們的無縫整合,您的網站將成為一個無價的平台,以前所未有的方式宣傳您的手機應用程式。, - 想像一下,擁有一個直接與網站訪客互動的渠道,...。
My FastAPP 》使用 My FastAPP 應用程式建立器 建置原生移動應用程式,並將其整合至 Android 和 iOS 原生應用程式,以增加您的線上業務。, , 透過 WordPress 外掛 My FastA...。
Reactor: Core 》Reactor: Core 將你的網站連接到使用 Reactor: Builder 建立的手機應用程式。它增加了 JSON API 端點,使 Reactor 強化型應用程式中可以使用自訂資料。若要使...。
ShopApper: Mobile App for WooCommerce 》ShopApper 是一個 WooCommerce 手機應用程式建立服務,透過 3 個簡單步驟,自動建立所有 WooCommerce 商店的手機應用程式:, 1. 將此外掛安裝到您的 WooComme...。
appful Mobile App Plugin [OLD – NEW VERSION BELOW] 》appful® 是一家專注於企業軟體的 SaaS 公司。我們的使命是透過最強大的內容通道之一:行動應用程式,幫助公司、出版商和雜誌傳達其內容給客戶、員工和使用者...。
WP API 》WP-API 將整個 WordPress 博客翻譯成 JSON 格式的 API。您可以使用多種不同的方法來檢索有關文章、頁面、作者、標籤和類別的信息。您還可以使用 API 方法提交...。
Mobile Kiosk 》Mobile Kiosk 是一個WordPress外掛,讓您可以輕鬆地從您的 WordPress 網站中創建美觀的全頁面幻燈片。不再使用無聊的靜態標誌,透過激動人心且具動態效果的顯...。
Feed.nu 》製作一個您的部落格的原生 Android 應用程式。, 透過此外掛,您可以自動建立行動裝置應用程式,並準備上架於 Android 市場,或自行託管在網路伺服器中。, 無...。