Skip to content

smallwat3r/untappd.el

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🍻 untappd.el

https://melpa.org/packages/untappd-badge.svg

Display your latest Untappd feed in Emacs.

Installation

Melpa

A melpa package is available for untappd.

Manual

Clone the repository:

git clone https://github.com/smallwat3r/untappd.el.git

And add the untappd.el directory to your load-path:

(add-to-list 'load-path "path/to/untappd.el")
(require 'untappd)

Set-up

You must have a client_id and a client_secret from Untappd in order to generate an access_token that you can use to authenticate to the Untappd API. You can find the instructions in this documentation.

You can then provide it as a value to untappd-access-token in your Emacs configuration:

(setq untappd-access-token "<access-token>")

I highly suggest securing your token using the Emacs auth-source library or any other alternative.

As an example here is what I use on my Doom Emacs set-up:

(use-package! untappd
  :commands (untappd-feed)
  :config (setq untappd-access-token
                (auth-source-pass-get 'secret "untappd/token")))

Usage

Run M-x untappd-feed, it will open a new buffer showing your latest Untappd feed.

Screenshots

./images/untappd.png

About

Display your latest Untappd feed in Emacs 🍻

Resources

License

Stars

Watchers

Forks

Releases

No releases published