All Versions
14
Latest Version
Avg Release Cycle
98 days
Latest Release
1454 days ago

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

    ๐Ÿ›  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
  • v1.1.1 Changes

    February 26, 2017

    ๐Ÿ”„ Change

    • Now success Handler return a OAuthSwiftResponse, which contains the Data, the HTTPURLResponse and URLRequest
      • On this object you can get decoded json object, string value, ...
      • You can extends OAuthSwiftResponse to use some JSON decoded like SwiftyJSON or any object mapper
    • If there is some problem to encode URL with OAuth2, "handle" is not returned (request is cancelled)

    ๐Ÿ†• New

    • OAuthSwiftError implement CustomNSError 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
  • v1.1.0 Changes

    November 05, 2016

    In 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 instance

    You can also get the URLRequest send to the server into this OAuthSwiftResponse object


    ๐Ÿ›  Backward compatibility with Objective C work with prefixed objc_ functions