aboutsummaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
Diffstat (limited to 'lisp')
-rw-r--r--lisp/mastodon-auth.el18
-rw-r--r--lisp/mastodon-client.el8
2 files changed, 13 insertions, 13 deletions
diff --git a/lisp/mastodon-auth.el b/lisp/mastodon-auth.el
index cd74ef8..6729e81 100644
--- a/lisp/mastodon-auth.el
+++ b/lisp/mastodon-auth.el
@@ -98,15 +98,15 @@ Reads and/or stores secrets in `MASTODON-AUTH-SOURCE-FILE'."
(prog1
(mastodon-http--post
(concat mastodon-instance-url "/oauth/token")
- `(("client_id" ,(plist-get (mastodon-client) :client_id))
- ("client_secret" ,(plist-get (mastodon-client) :client_secret))
- ("grant_type" "password")
- ("username" ,(plist-get credentials-plist :user))
- ("password" ,(let ((secret (plist-get credentials-plist :secret)))
- (if (functionp secret)
- (funcall secret)
- secret)))
- ("scope" "read write follow"))
+ `(("client_id" . ,(plist-get (mastodon-client) :client_id))
+ ("client_secret" . ,(plist-get (mastodon-client) :client_secret))
+ ("grant_type" . "password")
+ ("username" . ,(plist-get credentials-plist :user))
+ ("password" . ,(let ((secret (plist-get credentials-plist :secret)))
+ (if (functionp secret)
+ (funcall secret)
+ secret)))
+ ("scope" . "read write follow"))
nil
:unauthenticated)
(when (functionp (plist-get credentials-plist :save-function))
diff --git a/lisp/mastodon-client.el b/lisp/mastodon-client.el
index 4503d6d..bdfbca9 100644
--- a/lisp/mastodon-client.el
+++ b/lisp/mastodon-client.el
@@ -49,10 +49,10 @@
"POST client to Mastodon."
(mastodon-http--post
(mastodon-http--api "apps")
- '(("client_name" "mastodon.el")
- ("redirect_uris" "urn:ietf:wg:oauth:2.0:oob")
- ("scopes" "read write follow")
- ("website" "https://github.com/jdenen/mastodon.el"))
+ '(("client_name" . "mastodon.el")
+ ("redirect_uris" . "urn:ietf:wg:oauth:2.0:oob")
+ ("scopes" . "read write follow")
+ ("website" . "https://github.com/jdenen/mastodon.el"))
nil
:unauthenticated))