Java 因为SkipAdminCheck没有返回任何人

Java 因为SkipAdminCheck没有返回任何人,java,google-app-engine,google-api-java-client,Java,Google App Engine,Google Api Java Client,[信息]2016年10月6日上午11:24:54 com.google.apphosting.utils.jetty.AppEngineAuthentication$AppEngineAuthentication [信息]信息:由于SkipAdminCheck,未返回任何人 似乎此错误是由TaskQueue产生的 Queue qu = QueueFactory.getQueue(qname); qu.add(TaskOptions.Builder.withUrl("/task/"

[信息]2016年10月6日上午11:24:54 com.google.apphosting.utils.jetty.AppEngineAuthentication$AppEngineAuthentication [信息]信息:由于SkipAdminCheck,未返回任何人

似乎此错误是由TaskQueue产生的

    Queue qu = QueueFactory.getQueue(qname);
    qu.add(TaskOptions.Builder.withUrl("/task/"+qname)
        .payload("{\"token\":\"asdf1234\"}","UTF-8")
        .method(TaskOptions.Method.POST)
        .header("Host", ModulesServiceFactory.getModulesService().getVersionHostname(null,null))
有什么建议可以解决吗?当然,我在谷歌上搜索过,谷歌只找到了3个关于的页面,其中两个是关于添加的。如上所述,我添加了以下内容,但代码仍会在日志中生成消息:

.header("Host", ModulesServiceFactory.getModulesService().getVersionHostname(null,null)) 

@盖凡:我读了这个链接。正如在评论#26中,我已经添加了这一行,结果是#27:“这个问题在1.9.40仍然存在”对我来说也是真实的