Skip to content

smallwat3r/untappd.el

Folders and files

NameName
Last commit message
Last commit date

Latest commit

78b9b30 Β· Jan 12, 2025

History

28 Commits
Mar 16, 2024
Aug 6, 2021
Mar 16, 2024
Jan 12, 2025

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