Skip to content

Commit 312f5ce

Browse files
author
Dongri Jin
committedJan 15, 2015
Fix readme
1 parent 266854f commit 312f5ce

6 files changed

+54
-23
lines changed
 

‎Assets/FoursquareOAuth.png

-33.5 KB
Binary file not shown.

‎Assets/FoursquareOAuthTokens.png

-19.3 KB
Binary file not shown.

‎Assets/ImportPaths.png

49.7 KB
Loading

‎Assets/OAuthSwift-icon.png

25.3 KB
Loading

‎Assets/SwiftCompiler.png

-90.7 KB
Binary file not shown.

‎README.md

+54-23
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,47 @@
1-
## License
2-
3-
OAuthSwift is available under the MIT license. See the LICENSE file for more info.
4-
1+
![Image](Assets/OAuthSwift-icon.png "Image")
52

63
## OAuthSwift
74

85
Swift based OAuth library for iOS
96

107
### Support OAuth1.0, OAuth2.0
118

12-
Twitter, Flickr, Github, Instagram, Foursquare. Fitbit, Withings, Linkedin, Dropbox etc
9+
Twitter, Flickr, Github, Instagram, Foursquare. Fitbit, Withings, Linkedin, Dropbox, Dribbble etc
1310

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
1539

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+
![Image](Assets/ImportPaths.png "Image")
41+
42+
### Setting URL Schemes
43+
44+
![Image](Assets/URLSchemes.png "Image")
2545

2646
### Examples
2747

@@ -67,16 +87,27 @@ oauthswift.authorizeWithCallbackURL( NSURL(string: "oauth-swift://oauth-callback
6787

6888
```
6989

70-
### Setting Swift Compiler
90+
### OAuth pages
7191

72-
![Image](Example/Images/SwiftCompiler.png "Image")
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/)
73102

74-
### Setting URL Schemes
75-
76-
![Image](Example/Images/URLSchemes.png "Image")
77103

78104
### Images
79105

80-
![Image](Example/Images/Services.png "Image")
81-
![Image](Example/Images/TwitterOAuth.png "Image")
82-
![Image](Example/Images/TwitterOAuthTokens.png "Image")
106+
![Image](Assets/Services.png "Image")
107+
![Image](Assets/TwitterOAuth.png "Image")
108+
![Image](Assets/TwitterOAuthTokens.png "Image")
109+
110+
## License
111+
112+
OAuthSwift is available under the MIT license. See the LICENSE file for more info.
113+

0 commit comments

Comments
 (0)
Please sign in to comment.