Publish R Markdown to Medium via An RStudio Addin
October 26, 2017
I created an experimental package to work with Medium API.
mediumr: https://github.com/yutannihilation/mediumr/
mediumr allows you to knit and post R Markdown to Medium.
Installation You can install mediumr from github with:
devtools::install_github("yutannihilation/mediumr") Authentication Medium API requires a self-issued API token. (While they provide OAuth method, it’s hard for R users to use it since localhost is not allowed to specify in the callback URL.) Please issue a token in “Integration tokens” section of settings and set it as a environmental variable MEDIUM_API_TOKEN.
...
Read more