Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在 Google App Engine 平台上使用 Google Web Toolkit 构建一个网络应用程序。现在我的客户要求我添加付款处理。我开始实现 authorize.net,但我对使用 GWT 处理回调 url 感到头疼。
如何设置从 authorize.net 接收发布数据的重定向 url?
AFAICT 您的回调 URL 应该与 GWT 无关。它应该映射到一个回调处理 servlet,该 servlet 应该修改发起事务的用户的会话状态。同时,您的 GWT 应用程序可能正在轮询服务器以获取用户会话状态的变化,这表明事务成功(或不成功)。