mirror of
https://github.com/rclone/rclone.git
synced 2025-01-19 04:47:54 +02:00
dropbox: fix oauth configuration
This was broken in c59a292719ad574357f96f8e19b65b02a6e135f1
This commit is contained in:
parent
68333d34a1
commit
1e88f0702a
@ -75,7 +75,7 @@ func init() {
|
||||
Description: "Dropbox",
|
||||
NewFs: NewFs,
|
||||
Config: func(name string) {
|
||||
err := oauthutil.Config("dropbox", name, dropboxConfig)
|
||||
err := oauthutil.ConfigNoOffline("dropbox", name, dropboxConfig)
|
||||
if err != nil {
|
||||
log.Fatalf("Failed to configure token: %v", err)
|
||||
}
|
||||
|
@ -250,6 +250,16 @@ func NewClient(name string, config *oauth2.Config) (*http.Client, *TokenSource,
|
||||
//
|
||||
// It may run an internal webserver to receive the results
|
||||
func Config(id, name string, config *oauth2.Config) error {
|
||||
return doConfig(id, name, config, true)
|
||||
}
|
||||
|
||||
// ConfigNoOffline does the same as Config but does not pass the
|
||||
// "access_type=offline" parameter.
|
||||
func ConfigNoOffline(id, name string, config *oauth2.Config) error {
|
||||
return doConfig(id, name, config, false)
|
||||
}
|
||||
|
||||
func doConfig(id, name string, config *oauth2.Config, offline bool) error {
|
||||
config, changed := overrideCredentials(name, config)
|
||||
automatic := fs.ConfigFileGet(name, fs.ConfigAutomatic) != ""
|
||||
|
||||
@ -322,7 +332,11 @@ func Config(id, name string, config *oauth2.Config) error {
|
||||
return err
|
||||
}
|
||||
state := fmt.Sprintf("%x", stateBytes)
|
||||
authURL := config.AuthCodeURL(state, oauth2.AccessTypeOffline)
|
||||
var opts []oauth2.AuthCodeOption
|
||||
if offline {
|
||||
opts = append(opts, oauth2.AccessTypeOffline)
|
||||
}
|
||||
authURL := config.AuthCodeURL(state, opts...)
|
||||
|
||||
// Prepare webserver
|
||||
server := authServer{
|
||||
|
Loading…
x
Reference in New Issue
Block a user