|
1 |
| -## License |
2 |
| - |
3 |
| -OAuthSwift is available under the MIT license. See the LICENSE file for more info. |
4 |
| - |
| 1 | + |
5 | 2 |
|
6 | 3 | ## OAuthSwift
|
7 | 4 |
|
8 | 5 | Swift based OAuth library for iOS
|
9 | 6 |
|
10 | 7 | ### Support OAuth1.0, OAuth2.0
|
11 | 8 |
|
12 |
| -Twitter, Flickr, Github, Instagram, Foursquare. Fitbit, Withings, Linkedin, Dropbox etc |
| 9 | +Twitter, Flickr, Github, Instagram, Foursquare. Fitbit, Withings, Linkedin, Dropbox, Dribbble etc |
13 | 10 |
|
14 |
| -### OAuth pages |
| 11 | +### Installation |
| 12 | + |
| 13 | +OAuthSwift is packaged as a Swift framework. Currently this is the simplest way to add it to your app: |
| 14 | + |
| 15 | +1. Drag OAuthSwift.xcodeproj to your project in the Project Navigator. |
| 16 | +2. Select your project and then your app target. Open the Build Phases panel. |
| 17 | +3. Expand the Target Dependencies group, and add OAuthSwift framework. |
| 18 | +4. Create a CommonCrypto directory inside the project directory. create a module.map file. The module map will allow us to use the CommonCrypto library as a module within Swift. Its contents are: |
| 19 | +``` |
| 20 | +module CommonCrypto [system] { |
| 21 | + header "/usr/include/CommonCrypto/CommonCrypto.h" |
| 22 | + link "CommonCrypto" |
| 23 | + export * |
| 24 | +} |
| 25 | +``` |
| 26 | +5. import OAuthSwift whenever you want to use OAuthSwift. |
| 27 | + |
| 28 | +### Support Carthage |
| 29 | + |
| 30 | +1. Install Carthage (https://github.com/Carthage/Carthage) |
| 31 | +2. Create Carhfile file |
| 32 | +``` |
| 33 | +github "dongri/OAuthSwift" ~> 0.1.7 |
| 34 | +``` |
| 35 | +3. Run `carthage update`. |
| 36 | +4. On your application targets’ “General” settings tab, in the “Embedded Binaries” section, drag and drop OAuthSwift.framework from the Carthage/Build/iOS folder on disk. |
| 37 | + |
| 38 | +### Setting Import Paths |
15 | 39 |
|
16 |
| -[Twitter](https://dev.twitter.com/docs/auth/oauth) |
17 |
| -[Flickr](https://www.flickr.com/services/api/auth.oauth.html) |
18 |
| -[Github](https://developer.github.com/v3/oauth) |
19 |
| -[Instagram](http://instagram.com/developer/authentication) |
20 |
| -[Foursquare](https://developer.foursquare.com/overview/auth) |
21 |
| -[Fitbit](https://wiki.fitbit.com/display/API/OAuth+Authentication+in+the+Fitbit+API) |
22 |
| -[Withings](http://oauth.withings.com/api) |
23 |
| -[Linkedin](https://developer.linkedin.com/documents/authentication) |
24 |
| -[Dropbox](https://www.dropbox.com/developers/core/docs) |
| 40 | + |
| 41 | + |
| 42 | +### Setting URL Schemes |
| 43 | + |
| 44 | + |
25 | 45 |
|
26 | 46 | ### Examples
|
27 | 47 |
|
@@ -67,16 +87,27 @@ oauthswift.authorizeWithCallbackURL( NSURL(string: "oauth-swift://oauth-callback
|
67 | 87 |
|
68 | 88 | ```
|
69 | 89 |
|
70 |
| -### Setting Swift Compiler |
| 90 | +### OAuth pages |
71 | 91 |
|
72 |
| - |
| 92 | +* [Twitter](https://dev.twitter.com/docs/auth/oauth) |
| 93 | +* [Flickr](https://www.flickr.com/services/api/auth.oauth.html) |
| 94 | +* [Github](https://developer.github.com/v3/oauth) |
| 95 | +* [Instagram](http://instagram.com/developer/authentication) |
| 96 | +* [Foursquare](https://developer.foursquare.com/overview/auth) |
| 97 | +* [Fitbit](https://wiki.fitbit.com/display/API/OAuth+Authentication+in+the+Fitbit+API) |
| 98 | +* [Withings](http://oauth.withings.com/api) |
| 99 | +* [Linkedin](https://developer.linkedin.com/documents/authentication) |
| 100 | +* [Dropbox](https://www.dropbox.com/developers/core/docs) |
| 101 | +* [Dribbble](http://developer.dribbble.com/v1/oauth/) |
73 | 102 |
|
74 |
| -### Setting URL Schemes |
75 |
| - |
76 |
| - |
77 | 103 |
|
78 | 104 | ### Images
|
79 | 105 |
|
80 |
| - |
81 |
| - |
82 |
| - |
| 106 | + |
| 107 | + |
| 108 | + |
| 109 | + |
| 110 | +## License |
| 111 | + |
| 112 | +OAuthSwift is available under the MIT license. See the LICENSE file for more info. |
| 113 | + |
0 commit comments