All Versions
14
Latest Version
Avg Release Cycle
98 days
Latest Release
1060 days ago
Changelog History
Page 2
Changelog History
Page 2
-
v1.2.0
September 16, 2017 -
v1.1.2 Changes
June 04, 2017๐ New
- โ add
encodeCallbackURL
to oauth 2 to URL encore callback URL. Seems to be needed for some services issue #339, pr #325 - in SafariURLHandler
presentViewControllerAnimated
variable added by @felipeflorencio - Optionally add callback URL to authorize URL using
addCallbackURLToAuthorizeURL
field of OAuth1Swift , as requested by PR #373 - โ add NounProject and Digu to demo app
๐ Change
- โ swift 3.1 warning @patricks @hiragram
- โช restore OAuth1Swift
init
without URL parameters @josephquigley - ๐ Allow changing grand type of device token authorisation Fix #377
- โ Add
parameters
parameter to renewAccessToken @wesley-dynamicowl
๐ Fix
- Do not send oauth_verifier query parameter if not necessary ie. if allowMissingOAuthVerifier=true, Fix #334
- ๐ Fix a crash when encoding credentials in a test target @eunikolsky
- โ add
-
v1.1.1 Changes
February 26, 2017๐ Change
- Now success Handler return a
OAuthSwiftResponse
, which contains theData
, theHTTPURLResponse
andURLRequest
- On this object you can get decoded json object, string value, ...
- You can extends
OAuthSwiftResponse
to use some JSON decoded likeSwiftyJSON
or any object mapper
- If there is some problem to encode URL with OAuth2, "handle" is not returned (request is cancelled)
๐ New
OAuthSwiftError
implementCustomNSError
protocol- Ability to specify body data for POST request
- โ Add wordpress in demo
๐ Fix
- ๐ Fix multipart request with some parameter #287 @ktakayama
- ๐ Fix OAuthSwiftCredential.Version init(:) error @bzmario
- Now success Handler return a
-
v1.1.0 Changes
November 05, 2016In success handler/closure an
OAuthSwiftResponse
object is now returned instead of multiple objects (data and http response)oauthswift.client.get("an url", success: { response inlet data = response.data // response.string for utf8 decoded string from data },...
You can extends
OAuthSwiftResponse
to return a decoded object by reading JSON for instanceYou can also get the
URLRequest
send to the server into thisOAuthSwiftResponse
object
๐ Backward compatibility with Objective C work with prefixed
objc_
functions