Changelog of the OAuth vendors class

2012-01-28
  • Adapting for CakePHP 2.0.x
2011-08-24
  • Re-purpose the getFullResponse() method so it will always return an array with the complete response of the last request.
2009-09-05
  • Including PHP library for OAuth in the package for convenience purposes, so you no longer have to download this library separately.
  • Adding method getFullResponse() for debugging purposes.
  • Adapting class for OAuth 1.0a: the method getRequestToken got a new parameter $callback:
    // new method signature
    getRequestToken($requestTokenURL, $callback = 'oob', $httpMethod = 'POST', $parameters = array())
    
    // old method signature
    getRequestToken($requestTokenURL, $httpMethod = 'POST', $parameters = array())
    
2009-03-30
  • Initial release

Changelog of the OAuth consumer component

2012-01-28
  • Adapting for CakePHP 2.0.x
2011-08-24
  • Re-purpose the getFullResponse() method so it will always return an array with the complete response of the last request.
2010-12-27
2009-09-05
  • Including PHP library for OAuth in the package for convenience purposes, so you no longer have to download this library separately.
  • Adding method getFullResponse() for debugging purposes.
  • Adapting class for OAuth 1.0a: the method getRequestToken got a new parameter $callback:
    // new method signature:
    getRequestToken($consumerName, $requestTokenURL, $callback = 'oob', $httpMethod = 'POST', $parameters = array())
    
    // old method signature:
    getRequestToken($consumerName, $requestTokenURL, $httpMethod = 'POST', $parameters = array())
    
  • Fixing a bug that causes a "class not found" error when both the component and the "vendors" files are in a plugin.
2009-02-06
  • Fixing problem with loading consumer files when the component is used in a plugin. Thanks to Rui Cruz for the patch!
  • Adding a protected createOAuthToken() method
2008-11-10
  • Fixing problem with Request/Access token urls using a querystring
2008-09-15
  • Fixing some bugs. Please be aware that the API of get() and post() changed!
2008-09-01
  • Initial release