我正在尝试与名为PayFort的支付网关集成,一切正常,我使用的方法返回HTML代码,这将是用户在付款过程中应该看到的页面。
我需要的是如何将HTML响应呈现到浏览器中,我研究了一些解决方案,并且所有这些解决方案都使用StreamReader和Writer,我通过浏览器直接调用Payment方法URL尝试了它,并且效果很好,但是当我尝试从JS / Ajax调用它时,它没有执行任何操作,也没有启动HTML响应。
以下是我用于与Payment Gateway集成的代码:
public string TryPayment(int ID)
{
var BaseURL = string.Format("{0}://{1}{2}", Request.Url.Scheme, Request.Url.Authority, Url.Content("~"));
setConfig();
api_url = Command.GetAPIURL(Command.IntegrationTypes.Redirect, true);
package = Umbraco.Content(ID);
int price = Convert.ToInt32(package.Value("price"));
VALUE = price;
MyReference = ("MyReference" + (DateTime.Now).ToString()).Replace(" ", "").Replace(":", "").Replace("/", "");
createSignature(MyReference, VALUE);
var newdata = "command=PURCHASE" +
"&access_code=My Code" +
"&merchant_identifier=My Identifier" +
"&merchant_reference=" + MyReference +
"&customer_email=Name@email.com" +
"&amount=" + VALUE +
"¤cy=JOD&language=ar" +
"&return_url=" + BaseURL + "umbraco/surface/FortResponse/working" +
"&signature=" + signature;
byte[] dataBytes = Encoding.UTF8.GetBytes(newdata);
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://sbcheckout.payfort.com/FortAPI/paymentPage");
request.AutomaticDecompression = DecompressionMethods.GZip | DecompressionMethods.Deflate;
request.ContentLength = dataBytes.Length;
request.ContentType = "application/x-www-form-urlencoded";
request.Method = "POST";
using (Stream requestBody = request.GetRequestStream())
{
requestBody.Write(dataBytes, 0, dataBytes.Length);
}
using (HttpWebResponse response = (HttpWebResponse)request.GetResponse())
using (Stream stream = response.GetResponseStream())
using (StreamReader reader = new StreamReader(stream, Encoding.GetEncoding(response.CharacterSet)))
{
return reader.ReadToEnd();
}
}
当我通过浏览器调用它时可以工作,而当我通过JS / Ajax调用它时不行。
任何见识都会受到赞赏。
答案 0 :(得分:0)
尝试以下方法
1)使用javaScript
success: function(data) {
window.location.href="nextstep.aspx";
}
或
2)将响应插入/更新到数据库中。将用户从付款页面重定向到VerifyPayment页面并在此处获取数据库值。
注意:部署应用程序并检查,有时Ajax调用在本地不起作用。
答案 1 :(得分:0)
经过调查,我发现我们可以像这样的示例那样从正面包括一个表单:Pay-fort SDK example,
并且无需从背面呈现HTML响应。