在 paytm all in one android SDK 中,如果用户设备上未安装 paytm 应用程序,则支付成功后不会收到响应

In paytm all in one andoid SDK, if paytm app is not installed on the user’s device then not getting the response after the payment successful

支付成功后出现404错误

        @Override
        public void onTransactionResponse(Bundle inResponse) {
            Log.d(AppConstants.TAG, "Payment Transaction response " + inResponse.toString());
            //not getting response here
        }

解决方法:-

问题出在发起交易api文档回调url参数是可选的,但在sdk集成文档中(Android)回调url是强制性的,这就是为什么我们面临这个问题。

引用url https://github.com/paytm/Paytm_Payments_Android_Sample_Apps/issues/2