From 168993aee7ff5cb98695984037d7209606a53ed3 Mon Sep 17 00:00:00 2001 From: Michelle Baert Date: Tue, 13 Feb 2018 18:55:18 +0100 Subject: Documentation stub for private_info scope authorization --- sx-auth.el | 3 +++ 1 file changed, 3 insertions(+) (limited to 'sx-auth.el') diff --git a/sx-auth.el b/sx-auth.el index 66968a5..bb2a2e2 100644 --- a/sx-auth.el +++ b/sx-auth.el @@ -112,6 +112,9 @@ following privileges are requested: * no_expiry do not pester you to reauthorize again +* private_info + TODO explanation. + After authorization with StackExchange, the user is then redirected to a website managed by SX. The access token required to use authenticated methods is included in the hash (which is -- cgit v1.2.3 From 6c52d544d71cac2b997f6256c41a9b29c66a337a Mon Sep 17 00:00:00 2001 From: Michelle Baert Date: Tue, 13 Feb 2018 18:56:24 +0100 Subject: fixed double encoding of OAuth token request URI --- sx-auth.el | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sx-auth.el') diff --git a/sx-auth.el b/sx-auth.el index bb2a2e2..ab9c72c 100644 --- a/sx-auth.el +++ b/sx-auth.el @@ -131,8 +131,7 @@ parsed and displayed prominently on the page)." no_expiry private_info write_access)) - (redirect_uri . ,(url-hexify-string - sx-auth-redirect-uri))) + (redirect_uri . ,sx-auth-redirect-uri)) ",")))) (browse-url url) (read-string "Enter the access token displayed on the webpage: "))) -- cgit v1.2.3