TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Any tips for integrating sms into your web app ?

7 点作者 mhidalgo将近 17 年前
I was wondering if anyone has experience with integrating this in sms in their web app. Any services out there that I should know about ?

6 条评论

kogir将近 17 年前
For real time, reliable two way messaging you'll either want to peer with the carriers you support (using SMPP) or use an aggregator. There are a lot of aggregator options and you'll want to shop around to get the best price.<p>Using SMPP I've seen round trip times as low as 10 seconds.<p>If you want media (pictures or video), you'll want an MM7 connection.<p>I'd link to wikipedia but I'm on a mobile phone, sorry.
bazookaaa将近 17 年前
You could go down the SMS/email gateway route, or use a company like Clickatell to send messages for you (though I don't have any personal experience with them). But seriously, <a href="http://www.google.com/search?&#38;q=sms+site:news.ycombinator.com" rel="nofollow">http://www.google.com/search?&#38;q=sms+site:news.ycombinato...</a>
fcoury将近 17 年前
One approach should be finding out what carriers accept Email2SMS. That's a very (and cheap) approach. That's what RememberTheMilk does.
评论 #211936 未加载
BRadmin将近 17 年前
getting your own dedicated short code is expensive and takes a while (~2-4 months).<p>i'm not familiar with the process, but in theory you can apply for a direct connection to EACH carrier (i think you need insane volume to even attempt this and even then approval is not probable).<p>after you get your dedicated short code, most people turn to aggregators that solve the volume problem for you (i.e. clickatell).<p>others bypass the dedicated short code route for cheaper / more immediate results with a shared short code (i.e. textmarks) -- accessible with a vanity keyword.<p>you can also try setting up your own SMS gateway w/an open-source like Kannal. add nokia phones for extra style &#38; fun points as desired.
DenisM将近 17 年前
<a href="http://en.wikipedia.org/wiki/Teleflip" rel="nofollow">http://en.wikipedia.org/wiki/Teleflip</a>
mhidalgo将近 17 年前
What does twitter do ?