Skip to content

Commit 53c3b76

Browse files
change readme
1 parent 2b087bf commit 53c3b76

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2074,7 +2074,7 @@ Please note, everything said above will happen only if you set `useEntityNames:
20742074
## Using Proxy
20752075

20762076
**Node.js Only.** Starting from v.1.7.2 DynamicsWebApi supports different types of connections through proxy. To make it possible, I added two dependencies in a `package.json`:
2077-
(http-proxy-agent)[https://github.com/TooTallNate/node-https-proxy-agent] and (https-proxy-agent)[https://github.com/TooTallNate/node-http-proxy-agent], based on a type of a protocol, DynamicsWebApi
2077+
[http-proxy-agent](https://github.com/TooTallNate/node-https-proxy-agent) and [https-proxy-agent](https://github.com/TooTallNate/node-http-proxy-agent), based on a type of a protocol, DynamicsWebApi
20782078
will use one of those agents.
20792079

20802080
In order to let DynamicsWebApi know that you are using proxy you have two options:
@@ -2083,16 +2083,16 @@ In order to let DynamicsWebApi know that you are using proxy you have two option
20832083

20842084
```js
20852085
const dynamicsWebApi = new DynamicsWebApi({
2086-
webApiUrl: 'https://myorg.api.crm.dynamics.com/api/data/v9.1/',
2086+
webApiUrl: 'https://myorg.api.crm.dynamics.com/api/data/v9.1/',
20872087
onTokenRefresh: acquireToken,
20882088
proxy: {
20892089
url: 'http://localhost:12345',
20902090
//auth is optional, you can also provide authentication in the url
20912091
auth: {
2092-
username: 'john',
2092+
username: 'john',
20932093
password: 'doe'
2094-
}
2095-
}
2094+
}
2095+
}
20962096
});
20972097
```
20982098

0 commit comments

Comments
 (0)