Skip to content

Commit

Permalink
Fixed issues in readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
ej2 committed Jan 2, 2018
1 parent af8d6bd commit 6fb5882
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ Manually connecting with OAuth version 1.0
Store the ``authorize_url``, ``request_token``, and ``request_token_secret``
for use in the Callback method.

2. Handle the callback:
2. Redirect to the ``authorize_url``. Quickbooks will redirect back to your callback_url.
3. Handle the callback:

.. code-block:: python
Expand Down Expand Up @@ -92,14 +93,11 @@ Manually connecting with OAuth version 2.0
)
callback_url = 'http://localhost:8000' # Quickbooks will send the response to this url
authorize_url = client.get_authorize_url(callback_url)
request_token = client.request_token
request_token_secret = client.request_token_secret
authorize_url = session_manager.get_authorize_url(callback_url)
Store the ``authorize_url``, ``request_token``, and ``request_token_secret``
for use in the Callback method.
2. Handle the callback:
2. Redirect to the ``authorize_url``. Quickbooks will redirect back to your callback_url.
3. Handle the callback:

.. code-block:: python
Expand Down

0 comments on commit 6fb5882

Please sign in to comment.