SwiftyOAuth alternatives and similar libraries
Based on the "Network" category.
Alternatively, view SwiftyOAuth alternatives based on common mentions on social networks and blogs.
-
Perfect
Server-side Swift. The Perfect core toolset and framework for Swift Developers. (For mobile back-end development, website and API development, and moreβ¦) -
Reachability.swift
Replacement for Apple's Reachability re-written in Swift with closures -
swifter
Tiny http server engine written in Swift programming language. -
SwiftSoup
SwiftSoup: Pure Swift HTML Parser, with best of DOM, CSS, and jquery (Supports Linux, iOS, Mac, tvOS, watchOS) -
Netfox
A lightweight, one line setup, iOS / OSX network debugging library! π¦ -
SwiftHTTP
Thin wrapper around NSURLSession in swift. Simplifies HTTP requests. -
APIKit
Type-safe networking abstraction layer that associates request type with response type. -
CocoaMQTT
MQTT 5.0 client library for iOS and macOS written in Swift -
Swifton
A Ruby on Rails inspired Web Framework for Swift that runs on Linux and OS X -
Zewo
Lightweight library for web server applications in Swift on macOS and Linux powered by coroutines. -
ResponseDetective
Sherlock Holmes of the networking layer. :male_detective: -
SwiftWebSocket
A high performance WebSocket client library for swift. -
BlueSocket
Socket framework for Swift using the Swift Package Manager. Works on iOS, macOS, and Linux. -
Connectivity
π Makes Internet connectivity detection more robust by detecting Wi-Fi networks without Internet access. -
WKZombie
WKZombie is a Swift framework for iOS/OSX to navigate within websites and collect data without the need of User Interface or API, also known as Headless browser. It can be used to run automated tests / snapshots and manipulate websites using Javascript. -
Taylor
A lightweight library for writing HTTP web servers with Swift -
Pitaya
π A Swift HTTP / HTTPS networking library just incidentally execute on machines -
Blackfish
A minimal, fast and unopinionated web framework for Swift -
PeerKit
An open-source Swift framework for building event-driven, zero-config Multipeer Connectivity apps -
Express
Swift Express is a simple, yet unopinionated web application server written in Swift -
Heimdallr.swift
Easy to use OAuth 2 library for iOS, written in Swift. -
Embassy
Super lightweight async HTTP server library in pure Swift runs in iOS / MacOS / Linux -
Socks
π Non-blocking TCP socket layer, with event-driven server and client. -
Reach
A simple class to check for internet connection availability in Swift. -
Digger
Digger is a lightweight download framework that requires only one line of code to complete the file download task -
SOAPEngine
This generic SOAP client allows you to access web services using a your iOS app, Mac OS X app and AppleTV app. -
Transporter
A tiny library makes uploading and downloading easier -
XcodeServerSDK
Access Xcode Server API with native Swift objects. -
BigBrother
Automatically sets the network activity indicator for any performed request.
Appwrite - The open-source backend cloud platform
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SwiftyOAuth or a related project?
README
SwiftyOAuth is a small OAuth library with a built-in set of providers and a nice API to add your owns.
let instagram: Provider = .instagram(clientID: "***", redirectURL: "foo://callback")
instagram.authorize { result in
print(result) // success(Token(accessToken: "abc123"))
}
Usage β’ Providers β’ Installation β’ License
Usage
Provider
Step 1: Create a provider
Initialize a provider with the custom URL scheme that you defined:
// Provider using the server-side (explicit) flow
let provider = Provider(
clientID: "***",
clientSecret: "***",
authorizeURL: "https://example.com/authorize",
tokenURL: "https://example.com/authorize/token",
redirectURL: "foo://callback"
)
// Provider using the client-side (implicit) flow
let provider = Provider(
clientID: "***",
authorizeURL: "https://example.com/authorize",
redirectURL: "foo://callback"
)
// Provider using the client-credentials flow
let provider = Provider(
clientID: "***",
clientSecret: "***"
)
Alternatively, you can use one of the built-in providers:
let github = .gitHub(
clientID: "***",
clientSecret: "***",
redirectURL: "foo://callback"
)
Optionally set the state
and scopes
properties:
github.state = "asdfjkl;" // An random string used to protect against CSRF attacks.
github.scopes = ["user", "repo"]
Use a WKWebView
if the provider doesn't support custom URL schemes as redirect URLs.
let provider = Provider(
clientID: "***",
clientSecret: "***",
authorizeURL: "https://example.com/authorize",
tokenURL: "https://example.com/authorize/token",
redirectURL: "https://an-arbitrary-redirect-url/redirect"
)
provider.useWebView = true
Define additional parameters for the authorization request or the token request with additionalAuthRequestParams
and additionalTokenRequestParams
respectively:
github.additionalAuthRequestParams["allow_signup"] = "false"
Step 2: Handle the incoming requests
Handle the incoming requests in your AppDelegate
:
func application(_ app: UIApplication, open url: URL, options: [UIApplication.OpenURLOptionsKey : Any] = [:]) -> Bool {
github.handleURL(url, options: options)
return true
}
Step 3: Ask for authorization
Finally, ask for authorization. SwiftyOAuth will either present a SFSafariViewController
(iOS 9) or open mobile safari.
github.authorize { (result: Result<Token, Error>) -> Void in
switch result {
case .success(let token): print(token)
case .failure(let error): print(error)
}
}
If the provider provides an expirable token, you may want to refresh it.
let uber: Provider = .uber(
clientID: "***",
clientSecret: "***",
redirectURL: "foo://callback/uber"
)
// uber.token!.isExpired => true
uber.refreshToken { result in
switch result {
case .success(let token): print(token)
case .failure(let error): print(error)
}
}
Token
The access_token
, token_type
, scopes
, and informations related to the expiration are available as Token
properties:
token.accessToken // abc123
token.tokenType // .Bearer
token.scopes // ["user", "repo"]
token.expiresIn // 123
token.isExpired // false
token.isValid // true
Additionally, you can access all the token data via the dictionary
property:
token.dictionary // ["access_token": "abc123", "token_type": "bearer", "scope": "user repo"]
Token Store
Every Token
is stored and retrieved through an object that conforms to the TokenStore
protocol.
The library currently supports following TokenStore
s:
provider.tokenStore = Keychain.shared
Keychain
: Before you use thisTokenStore
, make sure you turn on the Keychain Sharing capability.
provider.tokenStore = UserDefault.standard
UserDefaults
: the default TokenStore
. Information are saved locally and, if properly initialized, to your App Group.
provider.tokenStore = NSUbiquitousKeyValueStore.default
NSUbiquitousKeyValueStore
: the information are saved in the iCloud Key Value Store. Before you use this TokenStore
make sure your project has been properly configured as described here.
Error
Error is a enum that conforms to the ErrorType
protocol.
cancel
The user cancelled the authorization process by closing the web browser window.applicationSuspended
The OAuth application you set up has been suspended.redirectURIMismatch
The providedredirectURL
that doesn't match what you've registered with your application.accessDenied
The user rejects access to your application.invalidClient
TheclientID
and orclientSecret
you passed are incorrect.invalidGrant
The verification code you passed is incorrect, expired, or doesn't match what you received in the first request for authorization.other
The application emitted a response in the form of{"error": "xxx", "error_description": "yyy"}
but SwiftyOAuth doesn't have a enum for it. The data is available in the associated values.unknown
The application emitted a response that is neither in the form of a success one ({"access_token": "xxx"...}
) nor in the form of a failure one ({"error": "xxx"...}
). The data is available in the associated value.nsError
An error triggered when making network requests or parsing JSON. The data is available in the associated value.
Providers
GitHub
- docDribbble
- docInstagram
- docUber
- docFeedly
- docVimeo
- docSoundCloud
- docStackExchange
- docMedium
- docFoursquare
- docStripe
- docReddit
- docWeibo
- docSlack
- docDropbox
- docBasecamp
- docSpotify
- docMeetup
- docStrava
- docGoogle
- docStuart
- docUberRUSH
- doc- More to come...
Check the wiki for more informations!
Installation
Carthage
Carthage is a decentralized dependency manager that automates the process of adding frameworks to your Cocoa application.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate SwiftyOAuth into your Xcode project using Carthage, specify it in your Cartfile
:
github "delba/SwiftyOAuth" >= 1.1
CocoaPods
CocoaPods is a dependency manager for Cocoa projects.
You can install it with the following command:
$ gem install cocoapods
To integrate SwiftyOAuth into your Xcode project using CocoaPods, specify it in your Podfile
:
use_frameworks!
pod 'SwiftyOAuth', '~> 1.1'
License
Copyright (c) 2016-2019 Damien (http://delba.io)
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*Note that all licence references and agreements mentioned in the SwiftyOAuth README section above
are relevant to that project's source code only.