我尝试为我的应用程序配置webhooks,一切正常但是当我打电话给post方法打开邮件时,我得到的数据类型是x-www-form-urlencoded但是我想收到json。我该怎么做?我应该改变代码中的内容吗?或者在mailgun网站的管理面板中?
当我在配置中更改以发送电子邮件时:
webResource.type(MediaType.APPLICATION_FORM_URLENCODED).post(ClientResponse.class, formData);
为:
webResource.type(MediaType.APPLICATION_JSON).post(ClientResponse.class, formData);
然后我无法收到电子邮件。
答案 0 :(得分:0)
很遗憾,您无法配置mailgun webhooks的内容类型 - 您必须接受x-www-form-urlencoded格式。