我已创建以下商店操作
store(notify="http://my_app:1234/key/callback").
我希望收到使用JSON正文的POST,但是我正在使用application/x-www-form-urlencoded
MailGun文档说(https://documentation.mailgun.com/user_manual.html#routes):
通过路径中的store()操作存储电子邮件时,您可以选择在存储邮件时收到通知,方法是在设置存储操作时包含带有notify参数的URL,或者稍后可以通过以下方式检索邮件:通过Events API搜索消息并通过Messages API检索消息。
如果您设置了在收到邮件时发布的URL(存储(通知=" http://test.com/callback")),或稍后通过GET请求检索邮件在Messages API中,以JSON格式发布/返回以下参数。
然而,我得到了application/x-www-form-urlencoded
而不是JSON。
我该怎么做才能获得JSON而不是application/x-www-form-urlencoded
?