如何在Google Cloud Endpoint API中访问用户代理?

时间:2014-06-11 08:38:37

标签: google-app-engine google-cloud-endpoints

我的api端点定义如下

@Api (name = "auth", version = "1")
public class AuthenticationEndpoint {

    @ApiMethod 
    public AuthResult Register (@Named ("email") String email, @Named ("password") String pass) {
        // TODO: do something with the user agent here
    }    
}

有没有办法在我的Register方法中访问用户代理?

由于

1 个答案:

答案 0 :(得分:2)

您可以在方法中添加HttpServletRequest类型的参数。

另见question