Changelog of the OAuth vendors class

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 called "callback". Old method signature:
getRequestToken($requestTokenURL, $httpMethod = 'POST', $parameters = array())
New method signature:
getRequestToken($requestTokenURL, $callback = 'oob', $httpMethod = 'POST', $parameters = array())
2009-03-30 Initial release

Changelog of the OAuth consumer component

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 called "callback". Old method signature:
getRequestToken($consumerName, $requestTokenURL, $httpMethod = 'POST', $parameters = array())
New method signature:
getRequestToken($consumerName, $requestTokenURL, $callback = 'oob', $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