Skip to content

Commit e6c5930

Browse files
authored
Fix DropboxOAuth2Flow Documentation Parameters (dropbox#325)
1 parent b817a01 commit e6c5930

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dropbox/oauth.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,6 @@ def __init__(self, consumer_key, redirect_uri, session,
365365
Construct an instance.
366366
367367
:param str consumer_key: Your API app's "app key".
368-
:param str consumer_secret: Your API app's "app secret".
369368
:param str redirect_uri: The URI that the Dropbox server will redirect the user to after the
370369
user finishes authorizing your app. This URI must be HTTPS-based and pre-registered
371370
with the Dropbox servers, though localhost URIs are allowed without pre-registration and
@@ -374,6 +373,7 @@ def __init__(self, consumer_key, redirect_uri, session,
374373
(Will be used to save the CSRF token).
375374
:param str csrf_token_session_key: The key to use when storing the CSRF token in the session
376375
(For example: "dropbox-auth-csrf-token").
376+
:param str consumer_secret: Your API app's "app secret".
377377
:param str locale: The locale of the user of your application. For example "en" or "en_US".
378378
Some API calls return localized data and error messages; this setting tells the server
379379
which locale to use. By default, the server uses "en_US".

0 commit comments

Comments
 (0)