by Tim's Solutions
5 (8 reviews)
Tim's Nextcloud SSO OAuth2
Enables you to login to your WordPress site with your Nextcloud account with OAuth2
Tested up to WP 6.8 (Current: 6.9)
v2.0.3
Current Version v2.0.3
Updated 7 months ago
Last Update on 22 May, 2025
Synced 8 hours ago
Last Synced on
Rank
#11,378
+90 this week
Active Installs
300+
-7.4%
KW Avg Position
21.3
+0.3 better
Downloads
4.8K
+2 today
Support Resolved
0%
—
No change
Rating
100%
Review 5 out of 5
5
(8 reviews)
Next Milestone 400
300+
400+
1,067
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 88 more installs to reach 400+
Rank Changes
Current
#11,378
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
5.0
8 reviews
Overall
100%
5
8
(100%)
4
0
(0%)
3
0
(0%)
2
0
(0%)
1
0
(0%)
Tracked Keywords
Showing 4 of 4| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| Nextcloud | 2 | — | Tag | 11 hours ago |
| WordPress SSO | 3 | — | Tag | 11 hours ago |
| OAuth 2.0 | 19 | — | Tag | 11 hours ago |
| Single Sign-on | 61 | — | Tag | 11 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.0.3
- Last Updated
- May 22, 2025
- Requires WP
- 4.0.0+
- Tested Up To
- 6.8
- PHP Version
- 8.0 or higher
- Author
- Tim's Solutions
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 8
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
Anti-Malware Security and Brute-Force Firewall
100K+ installs
#295
WPS Limit Login
100K+ installs
#309
reCaptcha by BestWebSoft
100K+ installs
#316
Frequently Asked Questions
Common questions about Tim's Nextcloud SSO OAuth2
If you go to the settings page (Settings -> Nextcloud OAuth2) it gives you a simple breakdown of what's needed to setup the OAuth2 connection with your Nextcloud install. Login to your Nextcloud install Go to Settings -> Security Then under "OAuth 2.0 clients" add a new client Set the name to anything you like and the redirect URL to your site URL Then copy the Client Identifier and Secret keys in the form
This is the URL that you have installed Nextcloud at e.g. https://cloud.example.com/, if you have installed it in a subfolder, please include that e.g. https://example.com/cloud/. If your Nextcloud URLs look like https://example.com/index.php/apps/dashboard/ then please include the /index.php/ in the URL e.g. https://example.com/index.php/.
It's under Settings and called "Nextcloud OAuth2"
Yes, it's [nextcloud_login class="btn"]button text[/nextcloud_login] and there is an option to enable a button on the WordPress login screen, or you can use the URL www.example.com/wp-login.php?nc-sso=redirect
Yes, there is: tims_nso_authorize_url which is the Nextcloud URL the user gets redirected to, and is also the last hook before they go off to your install of Nextcloud, example: add_filter('tims_nso_nextcloud_login_button_url', 'custom_function_name_one'); function custom_function_name_one($authorize_url){ // custom code return $authorize_url; } tims_nso_successful_login_redirect which is the URL the user goes to after successfully coming back from Nextcloud, example: add_filter('tims_nso_successful_login_redirect', 'custom_function_name_two'); function custom_function_name_two($redirect_url){ // custom code return $redirect_url; } tims_nso_nextcloud_login_button_url which is the URL the login button and shortcode login button uses, example: add_filter('tims_nso_nextcloud_login_button_url', 'custom_function_name_three'); function custom_function_name_three($url){ // custom code return $url; } tims_nso_nextcloud_user_matched which is the WordPress WP_User (Object) and the user data (Object) from Nextcloud for the successful matched user, example: add_filter('tims_nso_nextcloud_user_matched', 'custom_function_name_four', 10, 2); function custom_function_name_four($user,$nextcloud){ // custom code return $user; } I'm getting a "Nextcloud server returned but with an invalid state for this session" error Before you go off to Nextcloud the site needs to store a unique key to verify the response when you come back, if this key is removed before you come back this is when you see this message. By default, the key is stored in the PHP session but if you're having trouble you can go into the plugin options and set the "Temp Key Storage Type" to use a Cookie and this should solve the issue.
If you check the JS console log and see a message like "Refused to send form data to ... because it violates the following Content Security Policy directive...." then you need to edit your Nextcloud config file, usually located at nextcloud/config/config.php and add the line: 'overwriteprotocol' => 'https',
Nope, just a simple free plugin to enable you to login to your site with Nextcloud. I need help If you have any problems please reach out on the support forum or directly here. I'll try my best to help.