Vés al contingut
WordPress.org

Català

  • Temes
  • Extensions
  • Notícies
  • Suport
  • Quant a
  • Patrons
  • Col·labora
  • Equip
  • Traduccions
  • Meetups
  • Aconseguiu el WordPress
Aconseguiu el WordPress
WordPress.org

Plugin Directory

TokenLink SSO Login for Zendesk

  • Envieu una extensió
  • Preferides
  • Entra
  • Envieu una extensió
  • Preferides
  • Entra

TokenLink SSO Login for Zendesk

Per Jerry Benton
Baixa
  • Detalls
  • Ressenyes
  • Instal·lació
  • Desenvolupament
Suport

Descripció

TokenLink SSO Login for Zendesk allows WordPress site administrators to provide seamless, secure single sign-on (SSO) access to Zendesk using JWT (JSON Web Tokens) authentication.

This plugin uses the official Firebase PHP-JWT library (BSD 3-Clause licensed, included and updated for WordPress compliance).

Setup takes less than five minutes using standard WordPress shortcodes — no third-party dependencies, no tracking, no bloat.

Written by Jerry Benton, the creator of Mailborder and MailScanner v5.

License

This plugin is licensed under the GPLv3 or later.
It includes the Firebase PHP-JWT library, which is licensed under the BSD 3-Clause license.

Captures

TokenLink SSO Login for Zendesk settings page under Settings <span aria-hidden=→ TokenLink Zendesk SSO.» class=»wp-image-9000001″ srcset=»https://i0.wp.com/ps.w.org/tokenlink-sso-login-for-zendesk/assets/screenshot-1.png?rev=3388486&w=300 300w, https://i0.wp.com/ps.w.org/tokenlink-sso-login-for-zendesk/assets/screenshot-1.png?rev=3388486&w=600 600w, https://i0.wp.com/ps.w.org/tokenlink-sso-login-for-zendesk/assets/screenshot-1.png?rev=3388486&w=900 900w» sizes=»(max-width: 599px) 50vw, 33vw» width=»1243″ height=»974″ loading=»eager» fetchpriority=»high» decoding=»async»/>
TokenLink SSO Login for Zendesk settings page under Settings → TokenLink Zendesk SSO.
zendesk.com JSON Web Token configuration.
zendesk.com JSON Web Token configuration.
Example shortcode page configuration.
Example shortcode page configuration.

Instal·lació

There are three ways to install this plugin:

From the WordPress Plugin Directory (Preferred)

  1. In your WordPress admin dashboard, go to Plugins → Add New.
  2. Search for TokenLink SSO Login for Zendesk.
  3. Click Install Now, then Activate.

Upload via ZIP File

  1. Download the plugin ZIP file from mailborder.com or from WordPress.org.
  2. In your WordPress admin dashboard, go to Plugins → Add New and click Upload Plugin at the top.
  3. Select the ZIP file and click Install Now.
  4. When installation completes, click Activate Plugin.

Manual Installation (FTP or File Manager)

  1. Download the plugin ZIP file and extract it on your computer.
  2. Upload the extracted folder to /wp-content/plugins/ using FTP or your hosting file manager.
  3. Activate it through the Plugins menu in WordPress.

Configuration

  1. Navigate to Settings → TokenLink Zendesk SSO.
  2. Enter your Zendesk Subdomain and Shared Secret.
  3. Set a Login Redirect Page if you use a custom login URL.
  4. Create a blank WordPress page and insert this shortcode: ** [tokenlink_zendesk_login] **
  5. (Optional) Create a menu item that links to that page. (e.g. a Support link)
  6. Use that page’s URL as your Remote Login URL in the zendesk.com SSO settings.

The plugin will automatically handle authentication to Zendesk and redirect users to Zendesk via secure JWT SSO.

PMF

Is this plugin free?

Yes. 100% free. As in free beer. No pro version. No nagware.

Is this plugin lightweight?

Yes. It loads ~40kb of code when it runs.

Does this plugin require any other plugin?

No. This is a standalone plugin and does not depend on any other plugin.

Does it work with modern Zendesk accounts?

Yes. It implements the standard JWT-based SSO endpoint (/access/jwt).

Is Composer required?

No. The JWT library is bundled directly in the plugin for convenience and meets WordPress PHPCS standards.

Does this plugin store any user data?

No. It simply authenticates the current logged-in WordPress user and securely passes their name and email to Zendesk for SSO. No personal data is logged or retained by the plugin.

Can I customize the login redirect page?

Yes. You can set a custom login page under Settings → Zendesk SSO → Login Redirect Page.
If left blank, it defaults to the standard WordPress login screen.

Does this plugin support multisite installations?

Yes. It can be network-activated or activated on individual subsites. Each site can have its own Zendesk configuration.

Can this be used with caching or security plugins?

Yes. It’s compatible with common caching and security plugins.
If your caching plugin caches logged-in pages, exclude the page containing [tokenlink_zendesk_login] to ensure proper redirects.

Will it conflict with existing SSO or login plugins?

No, it runs independently. It only triggers when the [tokenlink_zendesk_login] shortcode is executed, so it won’t interfere with other authentication systems.

Does this plugin work with Cloudflare or reverse proxies?

Yes. As long as HTTPS and PHP sessions function normally, JWT SSO works over any proxy or CDN.

I’m getting a 502 or redirect loop. What should I check?

Verify your Zendesk subdomain and shared secret are correct, and that your Zendesk SSO settings point to your WordPress page URL containing [tokenlink_zendesk_login].

Ressenyes

No hi ha ressenyes per a aquesta extensió.

Col·laboradors i desenvolupadors

«TokenLink SSO Login for Zendesk» és programari de codi obert. La següent gent ha col·laborat en aquesta extensió.

Col·laboradors
  • Jerry Benton

Traduïu «TokenLink SSO Login for Zendesk» a la vostra llengua.

Interessats en el desenvolupament?

Navegueu pel codi, baixeu-vos el repositori SVN, o subscriviu-vos al registre de desenvolupament per fisl de subscripció RSS.

Registre de canvis

1.0.10 – 2026-05-28

  • Verified compatible with WordPress 7.0 (released 2026-05-20). No DataViews or classic meta box dependencies.
  • Added modern plugin header fields: Requires at least, Requires PHP, Tested up to, Text Domain.
  • Moved SSO redirect from the shortcode callback to the template_redirect action (priority 1) so headers are always available; runs ahead of most caching plugins.
  • Added gates so preview, customizer, REST, AJAX, cron, XML-RPC and WP-CLI requests are not redirected.
  • Honour post_password_required() so password-protected pages keep their gate.
  • New tokenlink_zendesk_sso_page_match filter so page builders (Elementor, Bricks, etc.) can flag SSO pages whose shortcode lives outside post_content.
  • Loop guard: if the configured login redirect resolves back to the SSO page itself, fall back to the default WP login URL.
  • External login redirect URLs (off-site IdPs) are now actually followed instead of silently falling back to wp-login.php.
  • Security: JWT now includes exp (now+120s) and nbf (now-60s, 60s skew tolerance) claims; URL-safe jti; 128-bit entropy.
  • Security: subdomain strictly validated at both save time and use time (lowercase alphanumeric + hyphens, RFC-style DNS label), rejecting pasted URLs or malicious strings.
  • Security: redirects now send nocache_headers() and HTTP 303 so intermediate caches cannot cross-serve a JWT to another user.
  • Security: Shared Secret field changed to password input with autocomplete disabled.
  • Hardened login-redirect option sanitizer: requires empty, «/»-rooted path, or full http(s):// URL; rejects protocol-relative and other schemes.
  • Shared secret sanitizer relaxed to trim-only so legitimate Zendesk-generated secrets are not mutated.
  • display_name is HTML-decoded and tag-stripped before going into the JWT; user_email is lowercased to avoid duplicate Zendesk users.
  • Localized previously hardcoded English strings in the settings UI.
  • Guarded get_plugin_data() call with explicit wp-admin/includes/plugin.php include.
  • New activation notice points administrators at the settings page on first activation.

1.0.9 – 2026-01-26

  • Added tabbed settings interface with General and About tabs.
  • Added About page with plugin information, features, and support links.

1.0.8 – 2025-12-03

  • Code compliance review for WordPress 6.9.
  • Updated documentation.

1.0.7 – 2025-11-02

  • Code compliance review for WordPress PHPCS standards.
  • Added Settings link to plugin action links.
  • Improved plugin description.

1.0.6 – 2025-10-19

  • Initial public release.
  • Modernized JWT implementation (Firebase PHP-JWT).
  • Added WordPress settings screen.
  • Added [tokenlink_zendesk_login] shortcode.

Meta

  • Versió 1.0.10
  • Darrera actualització fa 2 mesos
  • Instal·lacions actives Menys de 10
  • Versió del WordPress 5.5 o posterior
  • Provada fins a 7.0.2
  • Versió del PHP 7.4 o posterior
  • Idioma
    English (US)
  • Etiquetes
    jwtloginSingle Sign-onssozendesk
  • Vista avançada

Valoracions

Encara no s'ha enviat cap ressenya.

Your review

Visualitzeu totes les ressenyes

Col·laboradors

  • Jerry Benton

Suport

Teniu quelcom a dir? Necessiteu ajuda?

Visualitza els fòrums de suport

Feu una donació

Voleu ajudar a què l’extensió millori?

Feu una donació a aquesta extensió

  • Quant a
  • Notícies
  • Allotjament
  • Privadesa
  • Aparador
  • Temes
  • Extensions
  • Patrons
  • Apreneu
  • Suport
  • Desenvolupadors
  • WordPress.tv ↗
  • Impliqueu-vos
  • Esdeveniments
  • Feu una donació ↗
  • Five for the Future
  • WordPress.com ↗
  • Matt ↗
  • bbPress ↗
  • BuddyPress ↗
WordPress.org
WordPress.org

Català

  • Visiteu el nostre compte X (abans Twitter)
  • Visiteu el nostre compte de Bluesky
  • Visiteu el nostre compte al Mastodon
  • Visiteu el nostre compte de Threads
  • Visiteu la nostra pàgina al Facebook
  • Visiteu el nostre compte d'Instagram
  • Visiteu el nostre compte de LinkedIn
  • Visiteu el nostre compte de TikTok
  • Visiteu el nostre canal al YouTube
  • Visiteu el nostre compte de Tumblr
El codi és poesia.
The WordPress® trademark is the intellectual property of the WordPress Foundation.