Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question

migrated from unix.stackexchange.com Jan 25 at 3:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.