我正在尝试通过“直接提交”工作流程 ( https://developers.dwolla.com/dev/pages/gateway#submit-directly )将 Dwolla 的场外网关用于我的自定义基于 ASPX/C# 的网站。
我已经能够使用他们提供的脚本成功地将 Dwolla 按钮添加到 ASPX 页面:
<script
src="https://www.dwolla.com/scripts/button.min.js" class="dwolla_button" type="text/javascript"
data-key="ConsumerKeyObtainedFromDwolla"
data-redirect="RedirectPage.aspx"
data-label="Dwolla"
data-name="MyNameGoesHere"
data-description="MyDescriptionGoesHere"
data-amount="123.45"
data-shipping="0"
data-tax="0"
data-guest-checkout="true"
data-type="freetype"
>
</script>
但是,我还需要在同一页面上包含一个 PayPal 按钮,并且不希望脚本输入标签发生冲突。我还想轻松填充变量(例如消费者密钥、时间戳和订单 ID 的 HMAC-SHA1 十六进制散列)并进行一些计算,而无需在 javascript 中这样做。所以我的目标是在页面的 C# 代码隐藏中完成这一切。
我的第一步是简单地从 PayPal 脚本中删除表单标签,并使用 PayPal 的 PostBackURL 添加一个 ASP 按钮。这很奏效,所以我进一步完全从 ASPX 中重构了 PayPal 部分,并实现了 C# 代码来构建基于 PayPal 脚本内容的重定向 URL:
string txtRedirectURL = "";
txtRedirectURL += "https://www.paypal.com/cgi-bin/webscr?&cmd=_xclick";
txtRedirectURL += "&business=A1B2C3D4";
txtRedirectURL += "&lc=US";
...
txtRedirectURL += "&item_name=abcdefg";
txtRedirectURL += "&amount=123.45";
txtRedirectURL += "¤cy_code=USD";
Response.Redirect(txtRedirectURL);
这很好用,所以我希望对 Dwolla 使用的脚本做同样的事情(如上文所述)。不幸的是,这种方法并未被证明是成功的。我尝试的第一个选项是根据 Dwolla 脚本中的数据字段模拟 PayPal 重定向:
string txtRedirectURL = "";
txtRedirectURL += "https://www.dwolla.com/payment/pay?";
txtRedirectURL += "key=ConsumerKeyObtainedFromDwolla";
txtRedirectURL += "&label=Dwolla";
txtRedirectURL += "&name=MyNameGoesHere";
txtRedirectURL += "&description=MyDescriptionGoesHere";
txtRedirectURL += "&amount=123.45";
txtRedirectURL += "&shipping=0.00";
txtRedirectURL += "&tax=0.00";
Response.Redirect(txtRedirectURL);
这确实试图将我导航到 Dwolla 的https://www.dwolla.com/payment/pay页面,但它最终将我导航到 Dwolla 的 404 页面(哭泣的蓝色考拉熊)。我还添加了以下行的各种版本,但没有取得更好的成功:
txtRedirectURL += "&signature=HMACSHA1Hash;
txtRedirectURL += "&test=true";
txtRedirectURL += "&destinationid=UserIDObtainedFromDwolla";
txtRedirectURL += "&orderid=999;
txtRedirectURL += "×tamp=" + txtTimeStamp;
txtRedirectURL += "&allowFundingSources=true";
我的假设是:
我的 URL 中的某些东西正在抛出问题,Dwolla 的错误处理将我扔到 404 页面而不是显示错误(正如我在玩按钮时看到的那样)
button.min.js 脚本正在做一些我需要在我的 C# 中重新创建的时髦的事情。我已经对其进行了审查,但无法确定缺少的步骤可能是什么。
我还尝试了一种更直接的方法来尝试从 C# 内部执行脚本:
string dwollaScript = "<script
src="https://www.dwolla.com/scripts/button.min.js" class="dwolla_button" type="text/javascript"
data-key="ConsumerKeyObtainedFromDwolla"
data-redirect="RedirectPage.aspx"
data-label="Dwolla"
data-name="MyNameGoesHere"
data-description="MyDescriptionGoesHere"
data-amount="123.45"
data-shipping="0"
data-tax="0"
data-guest-checkout="true"
data-type="freetype"
>
</script>";
System.Web.UI.ScriptManager.RegisterStartupScript(this, this.GetType(), "123", dwollaScript.ToString(), false);
当绑定到按钮单击时,它会成功触发,但它所做的只是在我的页面上显示一个 Dwolla 按钮,一旦它回发。它不像常规的 Dwolla 按钮那样将我导航到 Dwolla。
有什么想法吗?