我想了解 instamojo 支付网关与 SpringMvc 的集成,我无法找到支付链接的重定向代码
我有 github 的代码 https://github.com/Instamojo/instamojo-java
缺少重定向代码
PaymentOrder order = new PaymentOrder();
order.setName("John Smith");
order.setEmail("john.smith@gmail.com");
order.setPhone("12345678790");
order.setCurrency("INR");
order.setAmount(9D);
order.setDescription("This is a test transaction.");
order.setRedirectUrl("http://www.someexample.com");
order.setWebhookUrl("http://www.someurl.com/");
order.setTransactionId("dxg234");
订购代码在这里,但缺少重定向代码。提前致谢。我希望任何已经集成它的人都可以帮助我。
长风秋雁
相关分类