X Tutup
Skip to content

Commit 200affa

Browse files
committed
Fixed readme section Manually connecting with OAuth version 1.0
1 parent f240365 commit 200affa

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

CHANGELOG.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Changelog
22
========
33

4+
* 0.7.2 (November 28th, 2017)
5+
* Fixed bug in ListMixin count method.
6+
47
* 0.7.1 (November 28th, 2017)
58
* Added support for sending invoices.
69
* Added count to ListMixin.

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ Manually connecting with OAuth version 1.0
4545
)
4646
4747
callback_url = 'http://localhost:8000' # Quickbooks will send the response to this url
48-
authorize_url = client.get_authorize_url(callback_url)
49-
request_token = client.request_token
50-
request_token_secret = client.request_token_secret
48+
authorize_url = session_manager.get_authorize_url(callback_url)
49+
request_token = session_manager.request_token
50+
request_token_secret = session_manager.request_token_secret
5151
5252
Store the ``authorize_url``, ``request_token``, and ``request_token_secret``
5353
for use in the Callback method.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def read(*parts):
1010
return fp.read()
1111

1212

13-
VERSION = (0, 7, 1)
13+
VERSION = (0, 7, 2)
1414
version = '.'.join(map(str, VERSION))
1515

1616
setup(

0 commit comments

Comments
 (0)
X Tutup