1

对于与推荐的 v3 库一起使用的 Mailjet 的 REST API,我有一个严重的问题。

当我尝试更新时,我第一次能够这样做而没有错误,但是当我再次尝试这样做时,我得到了NullPointerException. 尽管如此,它确实会更新 Mailjet Server 部分中的统计信息。

我得到的 HTTP 响应也是HTTP/1.1 500 Internal Server Error

使用的代码:

thisUser=cl.createCall(User.Update).identifiedBy(UserProperty.ID, **myUniqueID**).property(UserProperty.USERNAME, propertyValue).execute();

任何想法都会受到欢迎。

好的评论后,这里是功能:

         @Path("/userUpdate/{propertyName}/{propertyValue}")
     @GET
     public Response userUpdate(@PathParam("propertyName") String propertyName, @PathParam("propertyValue") String propertyValue) throws ClientProtocolException, IOException{
         MailJetApiClient cl=null;
         User thisUser=null;
         Response resp=null;

         StringEntity stringEntity = null;

        try {
            cl = MailjetUsersRest.createClient();
        } catch (MailJetClientConfigurationException e2) {
            // TODO Auto-generated catch block
            e2.printStackTrace();
        }

        try {
            thisUser=cl.createCall(User.Get).identifiedBy(UserProperty.ID, ___MY_UNIQUE_ID___).execute();
        } catch (MailJetApiCallException e2) {
            // TODO Auto-generated catch block
            e2.printStackTrace();
        }
        String email = thisUser.getEmail();
        String lastip = thisUser.getLastIp();
        Date lastlogin = thisUser.getLastLoginAt();
        String local = thisUser.getLocale();
        String timezone = thisUser.getTimezone();
        Date warned = thisUser.getWarnedRatelimitAt();          

         try {

            cl = MailjetUsersRest.createClient();

            switch(propertyName){

            case "Username":

                thisUser=cl.createCall(User.Update).identifiedBy(UserProperty.ID, ___MY_UNIQUE_ID___).property(UserProperty.USERNAME, propertyValue).execute();

                resp = Response.status(200).entity(thisUser).build();

                break;

            default:
                System.out.println("Invalid propertyName.");
                break;
            }

        } catch (MailJetClientConfigurationException | MailJetApiCallException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }


            return resp;
     }
4

1 回答 1

1

首先,感谢您使用 Mailjet!

经过一些测试,我无法重现您的问题。您将在下面找到我使用的代码。

但是,我强烈建议您在我们的支持下在这里开票。

工作代码

请注意,在每次调用之前重建客户端是不必要的,并且被认为是不好的做法。

// Build a Mailjet client config
MailJetClientConfiguration config;

config = new MailJetClientConfiguration()
                .setBaseUrl("https://api.mailjet.com/v3/REST/")
                .setDefaultApiKey(System.getenv("MJ_PROD_PUBLIC"))
                .setDefaultSecretKey(System.getenv("MJ_PROD_PRIVATE"));

// Build a Mailjet client
MailJetApiClient client = config.buildClient();

// Your code (adapted to my environment, ie no 'Response' object 
// and no client factory.)
User thisUser = null;

try
{
    // Note that the 'L' in the 'identifiedBy' value fi is necessary
    thisUser = client
                .createCall(User.Get)
                .identifiedBy(UserProperty.ID, /*Our user's ID*/L)
                .execute();
}
catch (MailJetApiCallException e2)
{
    e2.printStackTrace();
}

String email = thisUser.getEmail();
String lastip = thisUser.getLastIp();
Date lastlogin = thisUser.getLastLoginAt();
String local = thisUser.getLocale();
String timezone = thisUser.getTimezone();
Date warned = thisUser.getWarnedRatelimitAt();

try
{
    thisUser = client
                .createCall(User.Update)
                .identifiedBy(UserProperty.ID, /*Our user's ID*/L)
                .property(UserProperty.USERNAME, "DevRel Team Mailjet")
                .execute();

}
catch (MailJetApiCallException e)
{
    e.printStackTrace();
}

复制粘贴最后一位(更新过程),以便执行两次更新调用(当然,没有相同的新用户名)不会引发任何错误,当然也不会引发NullPointerException或 500 HTTP 错误代码。
并且用户名相应地更改。

所以,是的,如上所述,请在此处联系我们的支持人员。这将使我们能够更好地帮助您。

如果这个答案让您满意,请不要忘记接受并投票,以便其他遇到类似问题的人知道这有帮助:-)

于 2015-07-03T09:15:51.490 回答