Skip to content

Commit 0c50224

Browse files
author
Constantine Fry
committed
Merge branch 'develop' of github.com:Constantine-Fry/das-quadrat into develop
2 parents ea30554 + 98eaf9a commit 0c50224

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Das Quadrat [![Carthage compatible](https://img.shields.io/badge/Carthage-compat
44
Das Quadrat is Foursquare API wrapper written in Swift.
55

66

7-
###Features
7+
### Features
88

99
+ Supports iOS and OSX.
1010
+ Covers all API endpoints.
@@ -15,7 +15,7 @@ Das Quadrat is Foursquare API wrapper written in Swift.
1515
+ Supports multiple accounts.
1616

1717

18-
###Installation
18+
### Installation
1919

2020
#### Carthage Installation
2121

@@ -50,9 +50,9 @@ pod 'QuadratTouch', '>= 1.0'
5050

5151
You can add source code files directly into your project to support iOS 7.0.
5252

53-
###Usage
53+
### Usage
5454

55-
#####Setup session
55+
##### Setup session
5656

5757
```swift
5858
let client = Client(clientID: "FOO.................FOO",
@@ -64,7 +64,7 @@ Session.setupSharedSessionWithConfiguration(configuration)
6464
let session = Session.sharedSession()
6565
```
6666

67-
#####Search request
67+
##### Search request
6868

6969
```swift
7070
var parameters = [Parameter.query:"Burgers"]
@@ -79,7 +79,7 @@ let searchTask = session.venues.search(parameters) {
7979
searchTask.start()
8080
```
8181

82-
#####Multi request
82+
##### Multi request
8383

8484
```swift
8585
let task1 = self.quadratSession.users.get()
@@ -92,7 +92,7 @@ let multiTask = self.quadratSession.multi.get([task1, task2]){
9292
multiTask.start()
9393
```
9494

95-
#####Native authorization
95+
##### Native authorization
9696

9797
The library will attempt to authorize natively via the actual Foursquare app, if installed. It will switch to the app to authorize, and then switch back to your app on success. Currently, there is no mechanism in place in Foursquare's app to switch back to your app if the user cancels the authorization from there, so the user will need to return to your app manually if they choose to cancel the authorization.
9898

@@ -103,11 +103,11 @@ To enable native authorization with Foursquare app you must add `foursquareauth`
103103
in info.plist file in your project.
104104

105105

106-
###Requirements
106+
### Requirements
107107

108108
Swift 2.0 / iOS 8.0+ / Mac OS X 10.9+
109109

110-
###License
110+
### License
111111

112112
The BSD 2-Clause License. See License.txt for details.
113113

0 commit comments

Comments
 (0)