Description
I can't restore my existing passwords from Bitwarden with one click.
Solution
I'd like an option to restore passwords from other major password storing apps like Bitwarden and also export to the same format, so we could restore it to the other password managers.
You could do it by doing:
- Import from .CSV/.JSON file.
- Export to .CSV/.JSON file
Example:
CSV format:
folder,favorite,type,name,notes,fields,login_uri,login_username,login_password,login_totp
JSON format:
{
"encrypted": false,
"folders": [
{
"id": "c611ce38-a4ac-4d0c-a156-adab005a4ebf",
"name": "Online Storage"
},
{
"id": "8e281c4b-8e73-485a-8751-ad350098c30c",
"name": "Social"
}
],
"items": [
{
"id": "4030542b-a4db-40d5-bc06-ae690081fa8e",
"organizationId": null,
"folderId": null,
"type": 1,
"name": "Example",
"notes": null,
"favorite": false,
"login": {
"uris": [
{
"match": null,
"uri": "https://example.com/"
},
{
"match": null,
"uri": "androidapp://com.example.app"
}
],
"username": "example@gmail.com",
"password": "a-long-boring-password!",
"totp": null
},
"collectionIds": null
}
]
}
Description
I can't restore my existing passwords from Bitwarden with one click.
Solution
I'd like an option to restore passwords from other major password storing apps like Bitwarden and also export to the same format, so we could restore it to the other password managers.
You could do it by doing:
Example:
CSV format:
JSON format:
{ "encrypted": false, "folders": [ { "id": "c611ce38-a4ac-4d0c-a156-adab005a4ebf", "name": "Online Storage" }, { "id": "8e281c4b-8e73-485a-8751-ad350098c30c", "name": "Social" } ], "items": [ { "id": "4030542b-a4db-40d5-bc06-ae690081fa8e", "organizationId": null, "folderId": null, "type": 1, "name": "Example", "notes": null, "favorite": false, "login": { "uris": [ { "match": null, "uri": "https://example.com/" }, { "match": null, "uri": "androidapp://com.example.app" } ], "username": "example@gmail.com", "password": "a-long-boring-password!", "totp": null }, "collectionIds": null } ] }