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

Commit 9c1cdb7

Browse files
committed
Change subdomain to example for consistency
1 parent 56bea99 commit 9c1cdb7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Authentication/HTTP Basic.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ HTTP Basic authentication is the oldest and simplest way to start working with t
77
To interact with Harvest in this example we're going to use XML. To make requests in XML, specify application/xml for your Content-Type and Accept headers. A simple example with [curl](http://en.wikipedia.org/wiki/CURL):
88

99
```sh
10-
curl -H 'Content-Type: application/xml' -H 'Accept: application/xml' -u "[email protected]:password" https://subdomain.harvestapp.com/account/who_am_i
10+
curl -H 'Content-Type: application/xml' -H 'Accept: application/xml' -u "[email protected]:password" https://example.harvestapp.com/account/who_am_i
1111
```
1212

1313
Successful requests return HTTP response codes in the 2xx range (e.g. 200, 201, etc.). Other response codes indicate a failed request or missing resource, in which case an error message may be provided. When successful, the above request returns:
@@ -16,7 +16,7 @@ Successful requests return HTTP response codes in the 2xx range (e.g. 200, 201,
1616
<?xml version="1.0" encoding="UTF-8"?>
1717
<hash>
1818
<company>
19-
<base-uri>https://subdomain.harvestapp.com</base-uri>
19+
<base-uri>https://example.harvestapp.com</base-uri>
2020
</company>
2121
<user>
2222
<timestamp-timers type="boolean">false</timestamp-timers>
@@ -42,4 +42,4 @@ Your authentication string is a base64 encoded version of your credentials. You
4242

4343
```http
4444
Base64.encode64("[email protected]:password").delete("\r\n")
45-
```
45+
```

0 commit comments

Comments
 (0)