appEngine云端点单参数问题

时间:2016-10-14 06:55:21

标签: java google-app-engine oauth-2.0 google-cloud-endpoints

Google Cloud Endpoint不允许您在通话中拥有多个参数。因此,例如,以下工作

@ApiMethod(name = "addFriend", httpMethod = ApiMethod.HttpMethod.POST)
    public void addFriend(Friend frient, User user) throws OAuthRequestException {
        ...
    }

问题是OAuth要求我除了常用参数外还有一个User参数。那我该怎么写呢?

1 个答案:

答案 0 :(得分:2)

它在Android Studio中显示为错误,但在使用Maven进行部署时有效!在Studio for Cloud Endpoints框架v2中猜猜Gradle插件支持将解决此检查。目前,请使用@SuppressWarnings(" ResourceParameter")。