Sogrey

Results 11 comments of Sogrey

I meet the same problem too.TwT

记录,我也遇到,但是我的问题不是label字符超过50个,而是标题中包含了英文半角的`,` 可以改成中文逗号,希望有帮到后来人。 https://github.com/Sogrey/Sogrey.github.io/issues/28#issuecomment-570901237

我也是同样情况

@ifyour 尝试过了,不行

F12 查看到gitment.js 有两个 401 ![](https://sogrey.github.io/GithubPagePics/imgs/Error%20Bad%20credentials.jpg) 何解? 定位应该是授权问题。 我在[Settings](https://github.com/settings/profile)/[Developer settings](https://github.com/settings/developers)的`OAuth Apps`中找到我们授权的应用,重新生产秘钥,重新配置就好了。 ![](https://sogrey.github.io/GithubPagePics/imgs/OAuth%20Apps.jpg) ![](https://sogrey.github.io/GithubPagePics/imgs/OAuth%20Apps2.jpg) 重新配置 theme 下的 _config.yml 文件 ![](https://sogrey.github.io/GithubPagePics/imgs/gitment_config.jpg) [记录一下](https://sogrey.github.io/article/Hexo-%E6%B7%BB%E5%8A%A0-Gitment-%E8%AF%84%E8%AE%BA/#Gitment%E5%9D%91%E7%82%B9%E5%B0%8F%E7%BB%93-%E9%83%A8%E5%88%86%E5%87%BA%E8%87%AAiHTCboy)

> 伪代码如下,可以添加不限个数的Website: > > ```java > @Config > public class AppConfig implements WebConfig { > > @Override > public void onConfig(Context context, Delegate delegate) { > delegate.addWebsite(new AssetsWebsite(context, "/web")); >...

[gz文件访问不到,报404,其他文件能正常访问,急 · Issue #410 · yanzhenjie/AndServer](https://github.com/yanzhenjie/AndServer/issues/410)

我的vue项目打包后也有.gz的文件,有同样问题

``` kotlin @Config class AppConfig : WebConfig { override fun onConfig(context: Context, delegate: WebConfig.Delegate) { // 增加一个位于assets的web目录的网站 delegate.addWebsite(AssetsWebsite(context, "/web/")) // 增加一个位于/sdcard/Download/AndServer/目录的网站 var rootPath = context.getExternalFilesDir(null)?.absolutePath // /sdcard/Android/data/{apppackage}/files/ delegate.addWebsite(StorageWebsite(rootPath!!, "/test/")) //...