React 中的客户端支付解决方案(无服务器)? [英] Clientside payment solution in React (no server)?

查看:56
本文介绍了React 中的客户端支付解决方案(无服务器)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你知道任何不需要任何后端的 React 支付解决方案吗?我试过实施 Noodlio,因为它说它适用于 React.我找不到任何使用 react 和 Noodlio 的项目,而且我没有让它工作.

Do you know of any payment solution for React that don't require any backend? I've tried implementing Noodlio as it said that it would work for React. I could not find any projects using react and Noodlio and I didn't get it to work.

所以:有没有人让 Noodlio 使用 React 并愿意告诉我如何使用?

So: has anyone gotten Noodlio to work with React and are willing to tell me how?

或者有没有其他不需要服务器的支付解决方案?

Or are there any other payment solution that doesn't need a server?

推荐答案

付款实际上是将资金从一个客户转移到另一个客户.

Payments are Exactly Transferring Money Or Giving Credit from One Client to Another.

信用额度必须保存在某个地方.

Credit Amount Have to be save in some place.

客户端不是这项工作的好领域,因为接收者应该信任发送者,而发送者总是可能脱机并变得不可靠......

Client-side is not a good field for this work because the receiver should trust the sender and sender always could get offline and get unreliable ....

所以需要一个后端:

  • 始终可访问(在线)
  • 受到广泛人群的信任

但是这个标准可以通过两种方法来制定:

but this criteria can be made via 2 approaches:

  • 集中式:需要一个服务器来执行支付操作,客户端将与 API 通信.

  • centralized : which needs a server which perform payment action and client would communicate with APIs.

去中心化:客户向矿工发送付款以供批准.(在这种情况下,您不需要实现后端)

decentralized : client sending payments to miners to approve. (in this case there is no need for you to implement backend)

客户最关心的安全问题是如何避免账户劫持:

The Most Security issue that concerns client is how to avoid account hijacking:

  • 集中式:客户端应该安全地传输敏感数据,并且在客户端系统中不保存令牌/密码.

  • in centralized : client should transfer sensitive data securely and saving no tokens/ password in client system.

去中心化:客户端不应在客户端保存任何私钥或备份短语.通过区块链后端,所有其他方面都是安全的.

in decentralized: client shouldn't save any private key or backup phrases in client side. every other aspects are secure via blockchain back-end.

为了获得成功的客户实施付款解决方案,我建议您使用加密货币区块链作为后端.

for a successful only Client Implementation Payment Solution, i recommend you to use Cryptocurrency blockchains as a backend.

这篇关于React 中的客户端支付解决方案(无服务器)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆