mirror of https://github.com/keeweb/keeweb
fix #1599: switched to Dropbox short-lived access tokens
parent
b85d25614b
commit
207ff77778
|
@ -82,7 +82,8 @@ class StorageDropbox extends StorageBase {
|
|||
clientSecret: this._getSecret(),
|
||||
pkce: true,
|
||||
width: 600,
|
||||
height: 400
|
||||
height: 400,
|
||||
urlParams: { 'token_access_type': 'offline' }
|
||||
};
|
||||
}
|
||||
|
||||
|
|
|
@ -244,7 +244,8 @@ class StorageBase {
|
|||
'state': session.state,
|
||||
'redirect_uri': session.redirectUri,
|
||||
'response_type': 'code',
|
||||
...pkceParams
|
||||
...pkceParams,
|
||||
...opts.urlParams
|
||||
});
|
||||
|
||||
if (listener) {
|
||||
|
|
|
@ -4,6 +4,7 @@ Release notes
|
|||
`-` fixed a performance issue in searching entries
|
||||
`*` improved the "Show all file" checkbox behavior
|
||||
`+` shortcut to copy OTP
|
||||
`*` switched to Dropbox short-lived access tokens
|
||||
`-` fixed several issues in field editing
|
||||
`-` fix #1561: error during loading configs after reset
|
||||
|
||||
|
|
Loading…
Reference in New Issue