iOS 通讯软件 SDK

发布于 2024-11-28 04:47:44 字数 508 浏览 0 评论 0原文

我正在寻找在我当前的 iPhone/android 应用程序中实现应用程序内消息程序。要求是它必须免费、实时并提供推送通知。我已经研究过自己创建系统,但注意到很多应用程序实现了非常相似的概念,所以我认为 SDK/包装器可用。

下面是一个使用要实现的信使类型的应用程序的示例:

有点像: http://itunes.apple.com/us /app/lal-lite-likealittle-lite/id447279762?mt=8

我正在寻找的最接近的 SDK 示例是 kik Messenger 最近发布的东西,但它们需要你要安装他们的应用程序(这是一个限制): http://kik.com/dev/

还有其他 SDK 吗?

I'm looking to implement an in-app messenger in my current iPhone/android applications. The requirements are that it must be free, real-time, and provide push notifications. I've looked into creating the system myself, but have noticed quite a few apps implement very similar concepts so i figure there must be a drop in SDK/wrapper available.

Here's an example of an app using the of the type of messenger to be implemented:

Like a little:
http://itunes.apple.com/us/app/lal-lite-likealittle-lite/id447279762?mt=8

The closest example of an SDK im looking for is something recently released by kik messenger, but they require you to have their app installed (which is a restriction):
http://kik.com/dev/

Any other SDKs out there?

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

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

发布评论

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

评论(1

差↓一点笑了 2024-12-05 04:47:44

首先我想澄清一下,在继续之前您需要选择一个协议,
这是一个由多部分组成的问题,需要多个 SDK/服务来实现。
有些您可以使用第三方代码/服务,而另一些您可能需要自己编写。

Jabber 和 Google Talk 使用的 XMPP 是最好、最现代的协议之一。

为此,有许多免费使用的库,
对于 OS X 和 iOS 上的 Cocoa 开发,我使用这个很棒的库:

http://code.google.com/ p/xmppframework/

就推送通知而言,这是一个不同的领域,如果您不想编写自己的提供程序,那么我建议您研究像 Xtify 这样的服务来为您处理这一问题。

http://xtify.com/(免费使用)

要构建您的基础架构,您需要自己从后面编写代码-end 向您的客户拨打电话。
好消息是,如果您使用 Xtify 之类的东西,它支持 ios 和 android,并且 XMPP 库也可以帮您减轻很多工作。

First I would like to clarify that you need to chose a protocol before going any further,
and this is a multi-part question that requires multiple SDKs / services to implement.
Some you can use third party code / services and others you may need to write yourself.

One of the best and most modern protocols is XMPP used by Jabber and Google Talk.

For this there are many libraries out there that are free to use,
for Cocoa development on OS X and iOS I use this great library:

http://code.google.com/p/xmppframework/

So far as push notifications go thats a different realm, if you do not want to write your own provider then I suggest you look into a service like Xtify that handles that end for you.

http://xtify.com/ (Free to use)

To build your infrastructure you need to code that yourself from the back-end that makes the calls to your clients.
The good news is that if you use something like Xtify it supports both ios and android, and the XMPP library takes a lot of the work off of your hands as well.

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