diff --git a/dropbox/oauth.py b/dropbox/oauth.py index 94859071..80b3d073 100644 --- a/dropbox/oauth.py +++ b/dropbox/oauth.py @@ -40,9 +40,6 @@ class OAuth2FlowNoRedirectResult(object): """ Authorization information for an OAuth2Flow performed with no redirect. - - Currently refresh_token and expiration are both beta features, if you are interested - in using them, please contact Dropbox support """ def __init__(self, access_token, account_id, user_id, refresh_token, expiration, scope): diff --git a/example/oauth/commandline-oauth-pkce.py b/example/oauth/commandline-oauth-pkce.py index e2ec3c3a..b783e196 100644 --- a/example/oauth/commandline-oauth-pkce.py +++ b/example/oauth/commandline-oauth-pkce.py @@ -4,10 +4,6 @@ from dropbox import DropboxOAuth2FlowNoRedirect ''' -This example uses PKCE, a currently beta feature. -If you are interested in using this, please contact -Dropbox support - Populate your app key in order to run this locally ''' APP_KEY = "" diff --git a/example/oauth/commandline-oauth-scopes.py b/example/oauth/commandline-oauth-scopes.py index ce8e76e0..951165f8 100644 --- a/example/oauth/commandline-oauth-scopes.py +++ b/example/oauth/commandline-oauth-scopes.py @@ -4,10 +4,6 @@ from dropbox import DropboxOAuth2FlowNoRedirect ''' -This example uses Scopes, a currently beta feature. -If you are interested in using this, please contact -Dropbox support - It goes through an example of requesting a starting scope, and requesting more throughout the process '''