Java Mailgun API调用获取错误400错误请求

时间:2016-04-25 21:47:38

标签: java mailgun

我正在使用以下代码发送HTML消息。当我拨打电话时,我收到400 Bad Request Error。我的所有参数看起来都正确任何人都可以看到可能出错的地方吗?

    // get the full text entity manager
    Session hibernateSession = em.unwrap(Session.class);
    FullTextSession fullTextSession = Search.getFullTextSession(hibernateSession);

    BooleanQuery bq = new BooleanQuery();
    TermQuery filterNEW = new TermQuery(new Term("site.siteId", "NEW"));
    bq.add(filterNEW, BooleanClause.Occur.MUST);
    Query q = new QueryParser(Version.LUCENE_36, "cs-method", new StandardAnalyzer(Version.LUCENE_36)).parse(bq.toString());

    org.hibernate.Query hibernateQuery = fullTextSession.createFullTextQuery(q, InspectionMaster.class);
    logService.log("TEST : Test filter on site.siteId = 'NEW' " + hibernateQuery.list().size() + " documents");

}

1 个答案:

答案 0 :(得分:2)

您可能至少需要一个To地址。 mailgun文档不是很清楚确切的必填字段。你应该试试。您可以在同一个域中使用相同的发件人地址或无效的目标地址,例如no-reply@domain.com