Linux 软件免费装

OAuth Provider

开发者 wokamoto
megumithemes
更新时间 2013年7月16日 17:09
捐献地址: 去捐款
PHP版本: 2.8 及以上
WordPress版本: 3.5.2

标签

OAuth

下载

0.2.0 0.3.0 0.3.1 0.4.0 0.4.1 0.4.2 0.4.3 0.4.4 0.4.5 0.4.6 0.5.0 0.5.1 0.5.1.1 0.5.1.2 0.5.2 0.5.3 0.5.4

详情介绍:

This plugin is experimental and is enable to make your site an OAuth provider. Currently the plugin offers features as below: PHP5 Required. Special thx to DigitalCube Co. Ltd.! Thx. Robert! So, what I've noticed is that in this file one parameter is called "callbackurl" which should be called "oauth_callback", according to the rfc: http://tools.ietf.org/html/rfc5849 Localization "OAuth Provider" has been translated into languages. Our thanks and appreciation must go to the following for their contributions: If you have translated into your language, please let me know.

安装:

  1. Upload the entire oauth-provider folder to the /wp-content/plugins/ directory.
  2. Activate the plugin through the 'Plugins' menu in WordPress.
The control panel of OAuth Provider is in 'OAuth Provider'. After enabled this plugin, you can access URLs as below: (suppose your WordPress's URL is http://example.com/) The OAuth method sayHello, which is implemented in this plugin for now, is simply returning a user name. You can register a method using add_oauth_method($name, $method). You can use this function like add_filter(). You can easily add the sayHello method like below: add_oauth_method('sayHello', create_function('$request, $userid, $username', 'return "Hello {$username}!";')); To execute the registered sayHello method, access the URL below: http://example.com/oauth/sayHello

更新日志:

0.5.4 - July 16, 2013 Added languages/oauth-provider-fr_FR.po and .mo 0.5.3 - December 4, 2012 callbackurl should be oauth_callback (on the authorize form) port numbers on callback urls should be preserved. thx. timginn (https://github.com/timginn) 0.3.2 - August 17, 2012 Parameter is called "callbackurl" which should be called "oauth_callback". 0.3.1 - August 1, 2011\ Minor bug fix. 0.3.0 - July 27, 2011\ Added login form. 0.2.0 - July 27, 2011\ Initial release.