cofess/hexo-theme-pure

gitalk评论会显示403的问题解决

PP7Z opened this issue · 2 comments

PP7Z commented

原因:

主题模版中的cors-anywhere反向代理已不支持直接使用,需要更换。

修改如下:

  1. theme/pure/_config文件中找到gitalk的配置,在末尾加入下面一行:proxy: 'https://cors-anywhere.azm.workers.dev/https://github.com/login/oauth/access_token'

  2. 修改themes/pure/layout/_script/_comment/gitalk.ejs文件,在第15行下加入如下代码:proxy: '<%= theme.comment.gitalk.proxy %>',

文章参考:

PP7Z commented

如上

感谢分享