@@ -39,7 +39,6 @@ Manually connecting with OAuth version 1.0
3939 from quickbooks import Oauth1SessionManager
4040
4141 session_manager = Oauth1SessionManager(
42- sandbox = True ,
4342 consumer_key = QUICKBOOKS_CLIENT_KEY ,
4443 consumer_secret = QUICKBOOKS_CLIENT_SECRET ,
4544 )
@@ -58,7 +57,6 @@ for use in the Callback method.
5857.. code-block :: python
5958
6059 session_manager = Oauth1SessionManager(
61- sandbox = True ,
6260 consumer_key = QUICKBOOKS_CLIENT_KEY ,
6361 consumer_secret = QUICKBOOKS_CLIENT_SECRET
6462 )
@@ -86,7 +84,6 @@ Manually connecting with OAuth version 2.0
8684 from quickbooks import Oauth2SessionManager
8785
8886 session_manager = Oauth2SessionManager(
89- sandbox = True ,
9087 client_id = QUICKBOOKS_CLIENT_ID ,
9188 client_secret = QUICKBOOKS_CLIENT_SECRET ,
9289 base_url = ' http://localhost:8000' ,
@@ -102,7 +99,6 @@ Manually connecting with OAuth version 2.0
10299.. code-block :: python
103100
104101 session_manager = Oauth2SessionManager(
105- sandbox = True ,
106102 client_id = QUICKBOOKS_CLIENT_ID ,
107103 client_secret = QUICKBOOKS_CLIENT_SECRET ,
108104 base_url = ' http://localhost:8000' ,
@@ -123,7 +119,6 @@ OAuth version 1.0 - Setup the session manager using the stored ``access_token``
123119.. code-block :: python
124120
125121 session_manager = Oauth1SessionManager(
126- sandbox = True ,
127122 consumer_key = CONSUMER_KEY ,
128123 consumer_secret = CONSUMER_SECRET ,
129124 access_token = ACCESS_TOKEN ,
@@ -134,8 +129,7 @@ OAuth version 2.0 - Setup the session manager using the stored ``access_token``
134129
135130.. code-block :: python
136131
137- self .session_manager = Oauth2SessionManager(
138- sandbox = True ,
132+ session_manager = Oauth2SessionManager(
139133 client_id = realm_id,
140134 client_secret = CLIENT_SECRET ,
141135 access_token = AUTH2_ACCESS_TOKEN ,
0 commit comments