Troubleshooting quantifiedawesome.com login from Emacs
Hello,
I'm trying to log in to my Quantified Awesome account from Emacs using the quantified.el code you've shared. I'm hoping you might be able to point me in the right direction, even if that is back to the Emacs manual : )
In my Emacs config I have the following:
(load "~/Dropbox/emacs/elisp/quantified.el")
(require 'quantified)
And quantified.el the code you've provided on Github. I've tried using the function quantified-login as a means of testing login without success. That may be mistaken. I've also tried changing the parameters for quantified-username and quantified-password to my actual username and password. This also seemed to be unsuccessful.
(defcustom quantified-host "quantifiedawesome.com" "URL for Quantified Awesome instance")
(defcustom quantified-username nil "Username for Quantified Awesome")
(defcustom quantified-password nil "Password for Quantified Awesome")
(defvar quantified-token nil "Authentication token")
Can you advise me on the next best step to take? I'd like to begin adding org-mode data to QA following your example on http://pages.sachachua.com/.emacs.d/Sacha.html
Will