
外掛標籤
開發者團隊
原文外掛簡介
UpdaWa gives you a single place to see everything that needs attention on a WordPress site: pending core, plugin, and theme updates plus the SSL certificate expiry — all visible in the admin panel and exposed through a secure REST API endpoint you can poll from any monitoring tool.
Features
REST API — GET /wp-json/updawa/v1/status returns a full JSON snapshot protected by a per-site Bearer token.
Status dashboard — stat cards showing pending update counts, plugin/theme totals, and SSL days remaining at a glance.
WordPress Core, SSL, Plugins & Themes — each section in its own card with colour-coded badges (up to date / update available / expiring / expired).
SSL certificate monitoring — connects to your site’s HTTPS endpoint and reports the certificate expiry date and days remaining.
Bearer token management — generate, copy, or revoke the 256-bit cryptographically random token from the Token API tab.
QR code — encodes site name, API URL, and token for instant import into a mobile monitoring app.
Android app (coming soon) — a dedicated mobile app for monitoring update and SSL status across multiple WordPress sites, with push notifications when updates are available or certificates are about to expire.
JSON view — pretty-printed full API payload with a one-click Copy button.
Zero external dependencies — the QR code library is bundled; no data is sent to external servers.
REST API
The endpoint is read-only and requires a valid Bearer token:
curl -H "Authorization: Bearer YOUR_TOKEN" \
https://example.com/wp-json/updawa/v1/status
Example response:
{
"generated_at": "2026-04-14T09:10:41+00:00",
"wordpress": {
"current_version": "6.9.4",
"update_available": false,
"new_version": null,
"package_url": null
},
"plugins": [ ... ],
"themes": [ ... ],
"ssl_expires_at": "2026-07-05T01:48:00+00:00"
}
