- Adding a
postMultidataFormData()
method to use for API methods like Twitter's update_with_media which expect multipart data
- Adapting for CakePHP 2.x
- Inlining and updating the OAuth library
- Switching to Semantic Versioning
- Re-purpose the
getFullResponse()
method so it will always return an array with the complete response of the last request
- Including the PHP library for OAuth in the package for convenience purposes, so you no longer have to download this library separately
- Adding a
getFullResponse()
method for debugging purposes - Adapting the class for OAuth 1.0a. The
getRequestToken()
method got a new parameter named$callback
: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
- 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
- Fixing problem with Request/Access token urls using a querystring
- Fixing some bugs. Please be aware that the signatures of
get()
andpost()
changed!
- Initial release