File tree Expand file tree Collapse file tree 5 files changed +37
-5
lines changed Expand file tree Collapse file tree 5 files changed +37
-5
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ Upcoming
1212- Added a logging network class that logs requests and responses.
1313- Added new options for auth classes, including storing tokens in Redis and storing them on a remote server.
1414
15- 1.2.1 (2015-07-22)
15+ 1.2.2 (2015-07-22)
1616++++++++++++++++++
1717
1818- The SDK now supports setting a password when creating a shared link.
Original file line number Diff line number Diff line change @@ -288,11 +288,11 @@ Other Auth Options
288288For advanced uses of the SDK, two additional auth classes are provided:
289289
290290- `RemoteOAuth2 `: Allows use of the SDK on clients without access to your application's client secret. Instead, you
291- provide a `retrieve_access_token ` callback. That callback should perform the token refresh, perhaps on your server
292- that does have access to the client secret.
291+ provide a `retrieve_access_token ` callback. That callback should perform the token refresh, perhaps on your server
292+ that does have access to the client secret.
293293- `RedisManagedOAuth2 `: Stores access and refresh tokens in Redis. This allows multiple processes (possibly spanning
294- multiple machines) to share access tokens while synchronizing token refresh. This could be useful for a multiprocess
295- web server, for example.
294+ multiple machines) to share access tokens while synchronizing token refresh. This could be useful for a multiprocess
295+ web server, for example.
296296
297297Other Network Options
298298---------------------
Original file line number Diff line number Diff line change @@ -20,6 +20,22 @@ boxsdk.auth.oauth2 module
2020 :undoc-members:
2121 :show-inheritance:
2222
23+ boxsdk.auth.redis_managed_oauth2 module
24+ ---------------------------------------
25+
26+ .. automodule :: boxsdk.auth.redis_managed_oauth2
27+ :members:
28+ :undoc-members:
29+ :show-inheritance:
30+
31+ boxsdk.auth.remote_oauth2 module
32+ --------------------------------
33+
34+ .. automodule :: boxsdk.auth.remote_oauth2
35+ :members:
36+ :undoc-members:
37+ :show-inheritance:
38+
2339
2440Module contents
2541---------------
Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ boxsdk.network.default_network module
1212 :undoc-members:
1313 :show-inheritance:
1414
15+ boxsdk.network.logging_network module
16+ -------------------------------------
17+
18+ .. automodule :: boxsdk.network.logging_network
19+ :members:
20+ :undoc-members:
21+ :show-inheritance:
22+
1523boxsdk.network.network_interface module
1624---------------------------------------
1725
Original file line number Diff line number Diff line change @@ -12,6 +12,14 @@ boxsdk.util.compat module
1212 :undoc-members:
1313 :show-inheritance:
1414
15+ boxsdk.util.log module
16+ ----------------------
17+
18+ .. automodule :: boxsdk.util.log
19+ :members:
20+ :undoc-members:
21+ :show-inheritance:
22+
1523boxsdk.util.lru_cache module
1624----------------------------
1725
You can’t perform that action at this time.
0 commit comments