From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Deniz Dogan Newsgroups: gmane.emacs.devel Subject: Re: OAuth2 implementation in Elisp Date: Fri, 23 Sep 2011 00:00:02 +0200 Message-ID: <4E7BAFE2.2090102@dogan.se> References: <87sjnojl7j.fsf@keller.adm.naquadah.org> <4E7BAFA4.8090800@dogan.se> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Trace: dough.gmane.org 1316728843 5394 80.91.229.12 (22 Sep 2011 22:00:43 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 22 Sep 2011 22:00:43 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Sep 23 00:00:39 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1R6rJs-0002s6-JD for ged-emacs-devel@m.gmane.org; Fri, 23 Sep 2011 00:00:36 +0200 Original-Received: from localhost ([::1]:59314 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R6rJs-0003PD-02 for ged-emacs-devel@m.gmane.org; Thu, 22 Sep 2011 18:00:36 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:60138) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R6rJo-0003Oe-Am for emacs-devel@gnu.org; Thu, 22 Sep 2011 18:00:33 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R6rJh-0003PM-HJ for emacs-devel@gnu.org; Thu, 22 Sep 2011 18:00:32 -0400 Original-Received: from ch-smtp04.sth.basefarm.net ([80.76.153.5]:55303) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R6rJh-0003PG-CC for emacs-devel@gnu.org; Thu, 22 Sep 2011 18:00:25 -0400 Original-Received: from c80-216-107-100.bredband.comhem.se ([80.216.107.100]:60241 helo=[192.168.0.11]) by ch-smtp04.sth.basefarm.net with esmtp (Exim 4.76) (envelope-from ) id 1R6rJS-00039o-Fl for emacs-devel@gnu.org; Fri, 23 Sep 2011 00:00:13 +0200 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:6.0.2) Gecko/20110902 Thunderbird/6.0.2 In-Reply-To: <4E7BAFA4.8090800@dogan.se> X-Originating-IP: 80.216.107.100 X-Scan-Result: No virus found in message 1R6rJS-00039o-Fl. X-Scan-Signature: ch-smtp04.sth.basefarm.net 1R6rJS-00039o-Fl 862984ba0727001df0ddf1f5fa3de9d8 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.76.153.5 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:144206 Archived-At: On 2011-09-22 23:59, Deniz Dogan wrote: > On 2011-09-22 23:55, Julien Danjou wrote: >> Hi there, >> >> I wrote a small implementation of the OAuth 2.0 Authorization Protocol¹ >> client in Elisp, using `url' to make the HTTP requests and `plstore' to >> store the tokens permanently. >> >> Is there any interest in merging this into the trunk or should I keep it >> outside? >> >> ¹ http://tools.ietf.org/html/draft-ietf-oauth-v2-22 >> > > Ooh, nice! I am personally happy to see that someone finally implemented > this, although I haven't had the time to test it yet. I'm not sure its > relatively few use cases justify including it in Emacs trunk though. > Uh, where is the code by the way?