我想知道是否有一个已经编写的 Bash 脚本,该脚本能够将图像上传到 imgur.com,并在过期后自动执行请求新访问令牌的过程。
搜索这样的脚本,我发现了一些不支持OAuth2的脚本:
引自Imgur的OAuth2.0概述
Imgur API 使用 OAuth 2.0 进行身份验证。OAuth 2.0 有四个步骤:注册、授权、发出请求以及在初始access_tokens过期后获取新。
在Imgur的上传工具中搜索,我发现了不支持OAuth2.0的脚本,因此它们与我的情况无关。
谢谢!
几天前我写了这样一个工具:rugmi。
以下是一些使用示例:
Upload foo.png, bar.png, baz.png and print the result links to stdout.
$ rugmi -f foo.png -f bar.png -f baz.png
or
$ rugmi -- foo.png bar.png baz.png
Upload all JPEG files in a directory and print the result links to stdout.
$ find dir/ -type f -name '*.jpg' -print0 | rugmi -0
Upload foo.png and print an HTML type of link to be displayed as a medium thumbnail.
rugmi -f foo.png -t HTML -s MT