Skip to content
This repository has been archived by the owner on Dec 17, 2022. It is now read-only.

Commit

Permalink
Touched up README edits
Browse files Browse the repository at this point in the history
  • Loading branch information
twolfson committed May 10, 2017
1 parent a0d310f commit 7056786
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,31 +212,30 @@ Using [`request`][] options we can add a proxy to our requests
curl: {
custom: {
src: {
url: 'http://google.com',
url: 'http://google.com/',
proxy: 'http://127.0.0.1:9001/'
},
dest: 'google.html'
}
}
```

### Using an authentication
Using [`request`][] options we can add an authentication to our requests
### Using authentication
Using [`request`][] options we can add authentication to our requests

```js
curl: {
custom: {
src: {
url: 'http://secureserver.com/members',
auth: {
user: 'user',
pass: 'mdp'
user: 'my-username',
pass: 'my-password'
}
},
dest: 'member.html'
dest: 'secure.html'
}
}

```

## Contributing
Expand Down

0 comments on commit 7056786

Please sign in to comment.