处理 Gitalk Validation Failed(422)

报错

Error: Validation Failed.

原因

文章的 URL 过长,生成 issue 时超过了 label 的长度限制

解决思路

处理 Gitalk Validation Failed(422)_第1张图片
issue#102
  1. 使用的 js

  2. 引入 js,对 url 加密



var gitalk = new Gitalk({
  clientID: 'xxxxxxxxxxx',
  clientSecret: 'xxxxxxxxxxxxxxxxxxx',
  repo: 'xxxx.github.io',
  owner: 'xxxx',
  admin: ['xxxx'],
  id: md5(location.href)
})

问题解决

参考

  • 处理Gitalk中由于文章URL过长导致的Validation Failed(422)-没有名字的博客
  • Git issue

你可能感兴趣的:(处理 Gitalk Validation Failed(422))