I want to retrive the password of Gnome Online Account for a Cinnamon applet in javascript.
I already managed to get the email address but I failed to get the password :
const Goa = imports.gi.Goa;
let goaClient = Goa.Client.new_sync(null);
let accounts = goaClient.get_accounts();
// email address
accounts[0].get_account().identity // user@email.com
accounts[0].get_account().presentation_identity // user@email.com
accounts[0].get_mail().email_address // user@email.com
// password
accounts[0].get_oauth_based().consumer_secret // anonymous
accounts[0].get_oauth2_based() // null