扩展:TwitterLogin

This page is a translated version of the page Extension:TwitterLogin and the translation is 46% complete.
MediaWiki的扩展的手冊
TwitterLogin
發佈狀態: 不再維護
实现 用户識別
描述 Register and log in (authenticate) to a MediaWiki wiki using your Twitter account
作者 David Raison and Dave Challis (Clausekwis讨论)
最新版本 0.03 (2015-01-11)
MediaWiki 1.23+
数据库更改
许可协议 GNU較寬鬆公共授權條款3.0或更新版本
下載
示例 dev.hacker.lu wiki
$wgConsumerKey, $wgConsumerSecret
季度下載量 5 (Ranked 166th)
翻譯TwitterLogin的扩展,若在translatewiki.net可用
問題 尚未完成的工作 · 报告錯誤

此扩展将Twitter OAuth注册机能添加到MediaWiki中。 The code is derived from Dave Challis' implementation done for Web8D 2010 and also uses the twitteroauth library by Abraham Williams.

You need to register an application with Twitter in order to be able to use this extension. See the Configuration section for more details on how to register a Twitter app.

已知問題

This extension does not work with MediaWiki 1.19 and higher when you require your users to confirm their email addresses ($wgEmailConfirmToEdit = true), since setting an email address now requires a password (which does not exist for users who authenticate through Twitter).

设置

依赖性

The twitteroauth library requires the php-curl module.

安裝

配置

为了使用此扩展,您需要注册您的MediaWiki安装副本为Twitter应用。 您可以在此做它。

You will need to set a callback url in your app's settings. This will in most cases be https://wouwikidomain.tld/wiki/Special:TwitterLogin/callback.

When you have registered your application, you will get a consumer key and secret. Add these to your LocalSettings.php file, just below the line where you required the extension:

$wgConsumerKey = '[yourkey]';
$wgConsumerSecret = '[yoursecret]';

发行说明

  • 0.1 - 初始发行。
  • 0.2 - Now uses MediaWiki's http class instead of curl directly.
  • 0.3 - Now uses Twitter's 1.1 API link.

开发

待办事项

  • Support tying Twitter screen-names to existing MediaWiki accounts.
  • Redirect first time users to their preferences screen to let them confirm their email address.
  • Add an option to be set in LocalSettings.php whether Twitter users should be automatically emailconfirmed or not.