通过 JSMPP 提供 SMPP 连接

发布于 2024-11-17 22:30:59 字数 94 浏览 3 评论 0原文

我与移动提供商 (JSMPP) 有 SMPP 连接。现在我想通过 SMPP 向另一个人提供 SMPP 连接。 (移动提供商不允许向其他人提供直接 SMPP 连接)我该怎么做?

I have SMPP connection with mobile provider (JSMPP). Now I want give SMPP connection to another person over SMPP. (Mobile provider doesn't allow give direct SMPP connection to another person) How can I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

动听の歌 2024-11-24 22:30:59

如果我没猜错的话;您想要设置自己的 SMPP 基础设施,该基础设施主要对用户进行身份验证并将所有请求转发到另一个 SMPP 提供商。

您有两个选择:

  1. 使用位于用户请求和提供商之间的 SMPP API(如 jsmpp)实现非常基本的 ESME。对用户进行身份验证并转发他们的请求。

  2. 利用可以在 tcp 级别侦听和监视 SMPP 类型连接的代理。观察传输数据的身份验证详细信息,并在转发给您的提供商之前进行适当的修改。这确实与程序无关。

If I get you correctly; you want to setup your own SMPP infrastructure that basically authenticates a user and forwards all requests to another SMPP provider.

You have two options:

  1. Implement a very basic ESME using an SMPP API like jsmpp, that sits in between user requests and your provider. Authenticate users and forward their requests.

  2. Utilize a proxy that can listen in and monitor SMPP type connections at the tcp level. Observe the transport data for authentication details, and modify them as appropriate, before forwarding to your provider. This is really programme-agnostic.

还给你自由 2024-11-24 22:30:59

我认为最好的选择是在 jsmpp 之上实现一个简单的网关并将其用于所有内部系统。如果另一个人是您的朋友,您可以在没有任何身份验证的情况下创建它。

The best choice I think is to implement a simple gateway on top of jsmpp and use it for all internal systems. If that another person is your friend you can create it without any authentication.

丑丑阿 2024-11-24 22:30:59

如果我没猜错的话,您有一个 ESME,它使用移动提供商的 (SMSC) 凭据向移动用户发送短信,并且知道您想要将这些凭据用于另一个 ESME(朋友的)。 SMSC 不会允许您朋友的 ESME,因为凭据特定于您的 ESME。您的朋友必须从移动提供商 (SMSC) 获取他自己的凭据。

If I got you correctly, you have an ESME that uses a mobile provider's(SMSC) credentials to send SMSes to mobile users and know you want to use those credentials for another ESME (of friend). The SMSC will not allow your friend's ESME because the credentials are specific for yours ESME. Your friend will have to get his own credential from the mobile provider (SMSC).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文