Skip to content

Commit f02e95c

Browse files
ShreyaThapajcoon97
andauthored
Apply suggestions from code review
Co-authored-by: James Coon <[email protected]>
1 parent 921a70c commit f02e95c

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
@@ -66,7 +66,7 @@ It is highly recommended that you encrypt any token data you store.
6666

6767
##### Generating New Access Tokens
6868

69-
Application access tokens are used to authenticate against the API on behalf of an application. Application tokens can be used to access resources in the API that either belong to the application itself (`webhooks`, `events`, `webhook-subscriptions`) or the Dwolla Account that owns the application (`accounts`, `customers`, `funding-sources`, etc.). Application tokens are obtained by using the [`client_credentials`][client_credentials] OAuth grant type:
69+
Application access tokens are used to authenticate against the API on behalf of an application. Application tokens can be used to access resources in the API that either belong to the application itself (`webhooks`, `events`, `webhook-subscriptions`) or the Dwolla Account that owns the application (`accounts`, `customers`, `funding-sources`, etc.). Application tokens are obtained by using the [`client_credentials`](https://tools.ietf.org/html/rfc6749#section-4.4) OAuth grant type:
7070

7171
[client_credentials]: https://tools.ietf.org/html/rfc6749#section-4.4
7272

@@ -78,7 +78,7 @@ _Application access tokens are short-lived: 1 hour. They do not include a `refre
7878

7979
##### Initializing Pre-Existing Tokens:
8080

81-
The [Dwolla Sandbox Dashboard](https://dashboard-sandbox.dwolla.com/applications-legacy) allows you to generate `token`s for your application. These tokens can be initialized with the following attributes:
81+
The [Dwolla Sandbox Dashboard](https://dashboard-sandbox.dwolla.com/applications-legacy) allows you to generate tokens for your application. A `Token` can be initialized with the following attributes:
8282

8383
```python
8484
client.Token(access_token = '...',
@@ -87,7 +87,7 @@ client.Token(access_token = '...',
8787

8888
## Making Requests
8989

90-
Once you've created a `token`, currently, you can make low-level HTTP requests.
90+
Once you've created a `Token`, currently, you can make low-level HTTP requests.
9191

9292
### Low-level Requests
9393

@@ -238,7 +238,7 @@ _See https://developers.dwolla.com/api-reference#errors for more info._
238238

239239
## Community
240240
* If you have any feedback, please reach out to us on [our forums](https://discuss.dwolla.com/) or by [creating a GitHub issue](https://github.com/Dwolla/dwolla-v2-python/issues/new).
241-
* If you would like to contribute to this library, bug reports and pull requests are welcome on GitHub at https://github.com/Dwolla/dwolla-v2-python.
241+
* If you would like to contribute to this library, [bug reports](https://github.com/Dwolla/dwolla-v2-python/issues) and [pull requests](https://github.com/Dwolla/dwolla-v2-python/pulls) are always appreciated!
242242
* After checking out the repo, run `pip install -r requirements.txt` to install dependencies. Then, run `python setup.py` test to run the tests.
243243
* To install this gem onto your local machine, `run pip install -e .`.
244244

@@ -253,9 +253,9 @@ To learn more about Dwolla and how to integrate our product with your applicatio
253253
* [Dwolla SDK for C#](https://github.com/Dwolla/dwolla-v2-csharp)
254254
* [Dwolla SDK for Kotlin](https://github.com/Dwolla/dwolla-v2-kotlin)
255255
* [Dwolla SDK for Node](https://github.com/Dwolla/dwolla-v2-node)
256+
* [Dwolla SDK for PHP](https://github.com/Dwolla/dwolla-swagger-php)
256257
* [Dwolla SDK for Ruby](https://github.com/Dwolla/dwolla-v2-ruby)
257258
* [Developer Support Forum](https://discuss.dwolla.com/)
258259

259-
---
260260

261261
[`idempotency-key`]: https://docs.dwolla.com/#idempotency-key

0 commit comments

Comments
 (0)