0

升级到 V2 端点后,我使用 @peerAuthenticator 的 API 无法验证对等方。我使用@Authenticator 进行了测试并且遇到了同样的问题,忽略了执行。

在 GitHub 上创建了一个存储库以使用空应用程序进行测试。

该存储库是通过google 文档的步骤创建的。

  • 运行应用程序后,mvn appengine:run您可以请求 3 个端点:

  • API

    @Api(name = "myapi", version = "v1")
    public class YourFirstAPI {
    
        @ApiMethod(name = "firstApiMethod", path = "firstApiMethod", httpMethod = HttpMethod.GET)
        public TestObject a() {
            return new TestObject();
        }
    
        @ApiMethod(name = "b", path = "b", httpMethod = HttpMethod.GET, authenticators = {Authenticator.class})
        public TestObject b() {
            return new TestObject();
        }
    
        @ApiMethod(name = "c", path = "c", httpMethod = HttpMethod.GET, peerAuthenticators = PeerAuthenticator.class)
        public TestObject c() {
            return new TestObject();
        }
    }
    
  • 身份验证器

    public class Authenticator implements com.google.api.server.spi.config.Authenticator {
    
        @Override
        public User authenticate(HttpServletRequest arg0) throws ServiceException {
            throw new ServiceException(401, "unauthorized");
        }
    
    }
    
  • 对等身份验证器

    public class PeerAuthenticator implements com.google.api.server.spi.config.PeerAuthenticator{
    
        @Override
        public boolean authenticate(HttpServletRequest arg0) {
            // TODO Auto-generated method stub
            return true;
        }
    
    }   
    

有没有人有同样的问题?有什么解决方案吗?

4

1 回答 1

0

您没有在您的@Api@ApiMethod注释中设置您的验证器或对等验证器。请参阅Javadoc

于 2018-05-30T20:08:27.383 回答