美文网首页
处理 Gitalk Validation Failed(422)

处理 Gitalk Validation Failed(422)

作者: Noah牛YY | 来源:发表于2018-07-13 08:19 被阅读31次

    报错

    Error: Validation Failed.
    

    原因

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

    解决思路

    issue#102
    1. 使用的 js

    2. 引入 js,对 url 加密

    <script src="{{ site.baseurl }}/js/md5.min.js"></script>
    
    var gitalk = new Gitalk({
      clientID: 'xxxxxxxxxxx',
      clientSecret: 'xxxxxxxxxxxxxxxxxxx',
      repo: 'xxxx.github.io',
      owner: 'xxxx',
      admin: ['xxxx'],
      id: md5(location.href)
    })
    

    问题解决

    参考

    相关文章

      网友评论

          本文标题:处理 Gitalk Validation Failed(422)

          本文链接:https://www.haomeiwen.com/subject/yggdpftx.html