gitalk评论会显示403的问题解决
PP7Z opened this issue · 2 comments
PP7Z commented
原因:
主题模版中的cors-anywhere反向代理已不支持直接使用,需要更换。
修改如下:
-
theme/pure/_config
文件中找到gitalk
的配置,在末尾加入下面一行:proxy: 'https://cors-anywhere.azm.workers.dev/https://github.com/login/oauth/access_token'
-
修改
themes/pure/layout/_script/_comment/gitalk.ejs
文件,在第15行下加入如下代码:proxy: '<%= theme.comment.gitalk.proxy %>',
文章参考:
PP7Z commented
如上
liliangCS commented
感谢分享