Lost access to GDrive remote

Hello all, first post here.

I had been using rclone to sync to a GDrive remote but today my account has been suspended. I still have the encrypted files on disk and the config file contained the Google Client ID and Secret. Is it possible to unencrypt my files?

Below is my config file with access token and passwords redected.

[GDrive]
type = drive
token = {"access_token":"redacted","token_type":"Bearer","refresh_token":"redacted","expiry":"2019-08-31T18:07:54.971561+01:00"}
client_id = redacted
client_secret = redacted

[GDrive_crypt]
type = crypt
remote = GDrive:secure
password = redacted

You'd basically make a local remote and mount the encrypted data.

Something like this:

[remote]
type = local
nounc = true

[remotecrypt]
type = crypt
remote = remote:m:/something/here/crypted
filename_encryption = standard
password = …
password2 = …
1 Like

Thanks it worked! rclone.conf looks like this

[remote]
type = local
nounc = true

[remotecrypt]
type = crypt
remote = /Users/ryan/crypted
filename_encryption = standard
password = redacted

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.