Skip to content
This repository was archived by the owner on Jun 11, 2019. It is now read-only.

Commit 56bea99

Browse files
committed
Change api.harvestapp.com to example.harvestapp.com
1 parent a8e7825 commit 56bea99

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Authentication/OAuth 2.0.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Harvest uses the [Authorization Code flow](http://tools.ietf.org/html/draft-ietf
1818
1. *Redirect users to Harvest* to authorize their accounts with your application.
1919

2020
```
21-
GET https://api.harvestapp.com/oauth2/authorize ?
21+
GET https://example.harvestapp.com/oauth2/authorize ?
2222
client_id=NMBEWl3h0r4KKNhfOsmPJw%3D%3D &
2323
redirect_uri=https%3A%2F%2Fexample.com%2Fredirect_path &
2424
state=optional-csrf-token &
@@ -40,7 +40,7 @@ Harvest uses the [Authorization Code flow](http://tools.ietf.org/html/draft-ietf
4040
_Note: the `Content-Type` header for this request must be `application/x-www-form-urlencoded`._
4141
4242
```
43-
POST https://api.harvestapp.com/oauth2/token
43+
POST https://example.harvestapp.com/oauth2/token
4444
```
4545
4646
```json
@@ -69,7 +69,7 @@ Harvest uses the [Authorization Code flow](http://tools.ietf.org/html/draft-ietf
6969
_Note: the `Content-Type` and `Accept` headers for this request must be `application/json` or `application/xml`._
7070
7171
```
72-
GET https://api.harvestapp.com/account/who_am_i ?
72+
GET https://example.harvestapp.com/account/who_am_i ?
7373
access_token=Jjv5cUAnQx7R9jEECHNRxan7iMprt0ySncJhDdzQbtc%2FQXhMZcNVPQtJuBiDajPqNUz79o7S0FNvWc2WwIDcMA%3D%3D
7474
```
7575
@@ -78,7 +78,7 @@ Harvest uses the [Authorization Code flow](http://tools.ietf.org/html/draft-ietf
7878
_Note: the `Content-Type` header for this request must be `application/x-www-form-urlencoded`._
7979
8080
```
81-
POST https://api.harvestapp.com/oauth2/token
81+
POST https://example.harvestapp.com/oauth2/token
8282
```
8383
8484
```json
@@ -108,7 +108,7 @@ Harvest uses the [Implicit Grant flow](http://tools.ietf.org/html/draft-ietf-oau
108108
1. *Redirect users to Harvest* to authorize their accounts with your application.
109109
110110
```
111-
GET https://api.harvestapp.com/oauth2/authorize ?
111+
GET https://example.harvestapp.com/oauth2/authorize ?
112112
client_id=NMBEWl3h0r4KKNhfOsmPJw%3D%3D &
113113
redirect_uri=https%3A%2F%2Fexample.com%2Fredirect_path &
114114
state=optional-csrf-token &
@@ -132,6 +132,6 @@ Harvest uses the [Implicit Grant flow](http://tools.ietf.org/html/draft-ietf-oau
132132
_Note: the `Content-Type` and `Accept` headers for this request must be `application/json` or `application/xml`._
133133
134134
```
135-
GET https://api.harvestapp.com/account/who_am_i ?
135+
GET https://example.harvestapp.com/account/who_am_i ?
136136
access_token=Jjv5cUAnQx7R9jEECHNRxan7iMprt0ySncJhDdzQbtc%2FQXhMZcNVPQtJuBiDajPqNUz79o7S0FNvWc2WwIDcMA%3D%3D
137137
```

0 commit comments

Comments
 (0)