Typora: 设置Typora自动上传图片到Github

1. 修改图像上传设定

依次点击 文件->偏好设置->图像, 将上传服务修改为PicGo-Core, 勾选下图的三个复选框。
image-20220523105240950

2. 点击下载或更新 按钮, 得到配置文件

配置文件如下:

{
  "picBed": {
    "github": {
      "repo": "${github-repo}",
      "token": "${github-token}",
      "path": "img/",
      "customUrl": "",
      "branch": "master"
    },
    "current": "github",
    "uploader": "github"
  },
  "picgoPlugins": {}
}

这里主要是需要修改 repotoken的值,。

接下来打开github, 通过修改和设定得到 repotoken

3. 建立一个新的仓库,用作图片上传的图床

image-20200330141409488

此时新建仓库的 repo 名为:chengcodeX/cloudimg

4. 获取Token

点击用户名,在弹出的下列列表中选择”Settings“:

image-20220523103639284

在左侧的菜单栏中选择Develop settingsDevelop settings 在左侧菜单靠下的位置。

image-20220523103906612

选择"Personal access tokens", 点击"Generate new token"

image-20220523104138403

勾选"repo" 复选框, 选择 "Expiration" 过期时间。

image-20220523104302528

点击最下方的 "Generate token" 按钮生成一个新的token:

image-20220523104351445

复制得到的token:

image-20220523104808035

此时得到的token为: "token": "2bda0144223a0762be559843510e26de71ac5d59"

5. 修改配置文件

这里主要修改repotoken 两项, 将刚才得到的repotoken 的值填入对应的位置。

{
  "picBed": {
    "github": {
      "repo": "chengcodeX/cloudimg",
      "token": "2bda0144223a0762be559843510e26de71ac5d59",
      "path": "img/",
      "customUrl": "",
      "branch": "master"
    },
    "current": "github",
    "uploader": "github"
  },
  "picgoPlugins": {}
}

6. 验证图片是否能够正常上传

点击验证图片上传选项按钮,验证图片是否能够正常上传,

image-20220523105022142

image-20220523105058061

出现上图提示代表设置成功。

参考链接

  1. 设置Typora自动上传图片到github
posted @ 2022-05-23 11:09  夜行过客  阅读(1244)  评论(0编辑  收藏  举报