简体   繁体   English

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

[英]Integrating Neteller to my Asp.net website

I am banging my head for 2 days to integrate neteller into my website but could not get it, Returned response in xml contain error saying Invalid merchantid/merchant key ,how can i get them? 我要花两天时间才能将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>

At first You should not put your merchant credentials in hidden inputs for security reasons. 起初,出于安全原因,您不应将商家凭据放入隐藏的输入中。 Everyone can see your sensitive data. 每个人都可以看到您的敏感数据。 Make a POST on server side not client side. 在服务器端而非客户端进行POST。

merchant API key You can generate on merchant neteller panel in the Developer tab. 商家API密钥可以在“开发人员”选项卡的“商家Neteller”面板上生成。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM