将Neteller集成到我的Asp.net网站

时间:2013-12-06 10:13:16

标签: html asp.net forms

我正在敲打我的头2天将neteller整合到我的网站中但是无法得到它, xml中的返回响应包含错误说无效的商品/商家密钥,我该如何获得它们?

<form method="post" action="https://test.api.neteller.com/netdirect">
   <input type="text" name="version" value=" 4.1">
<input type="text" name="amount" size="10" value="3443" maxlength="10">
<input type="text" name="currency" value="USD" size="10" maxlength="3">
<input type="text" name="net_account" size="20" value="" maxlength="100">
<input type="text" name="secure_id" size="10" value="" maxlength="6">
<input type="hidden" name="merchant_id" value="43646">
<input type="hidden" name="merch_key" value="456453">
<input type="hidden" name="merch_transid" value="46436436" maxlength="50">
<input type="hidden" name="language_code" value="EN">
<input type="hidden" name="merch_name" value="fdghdfhgf">
<input type="hidden" name="merch_account" value="436346" maxlength="50">
<input type="hidden" name="custom_1" value="test123" maxlength="50">
<input type="hidden" name="custom_2" value="test123" maxlength="50">
<input type="hidden" name="custom_3" value="test123" maxlength="50">
<button type="submit" name="submit">Make Transfer</button>
</form>

1 个答案:

答案 0 :(得分:0)

首先,出于安全原因,您不应将商家凭据放入隐藏的输入中。每个人都可以看到您的敏感数据。在服务器端而不是客户端进行POST。

商家API密钥您可以在“开发者”标签中的商家neteller面板上生成。