From 997740fb825d94088552adc36c4d67d0f6dbaf47 Mon Sep 17 00:00:00 2001 From: Brad Rogers Date: Mon, 10 Aug 2020 14:35:39 -0700 Subject: [PATCH] Remove beta feature comments per GA --- dropbox/oauth.py | 3 --- example/oauth/commandline-oauth-pkce.py | 4 ---- example/oauth/commandline-oauth-scopes.py | 4 ---- 3 files changed, 11 deletions(-) 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 '''