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

科技回声

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

GitHubTwitter

首页

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

资源链接

HackerNews API原版 HackerNewsNext.js

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

Ask HN: Any app+API combinations to deliver push notifications to your iPhone?

1 点作者 aabalkan大约 11 年前
I&#x27;m looking for an iOS app to deliver basic text push notifications to my phone (e.g. website downtime alerts or things like that) using its API programmatically. Any recommendations or similar work you know of?<p>Maybe anything I can plug to IFTTT?

4 条评论

trvd1707大约 11 年前
I&#x27;m not sure I understood your question. Push notifications have to be originated outside the device. If you want an app running on your device and sending notifications to the device itself, it will be just a regular local notification. If you want to receive notifications from events that will originated outside the device, like the case you mentioned, website downtime alert), some application running running outside the device can use a service like Urban Airship, Amazon AWS, Parse.com and some others. These providers have an API that your app, running on a server somewhere, can use to send push notifications to your iOS device. You would need an app on your device the subscribes to these messages and the app could be launched by the remote notification when the user taps on it. If you are using one of these push notification service providers, your iOS app would have to be linked with their SDK. In iOS, each app that can receive remote push notifications is a topic and the originator of the push notification has to address the notification to a topic&#x2F;device combination.<p>This page has a list of several push notification providers: <a href="http://iphonedevsdk.com/forum/promotion-techniques/115219-my-list-of-push-notification-service-providers-urban-airship-alternatives.html" rel="nofollow">http:&#x2F;&#x2F;iphonedevsdk.com&#x2F;forum&#x2F;promotion-techniques&#x2F;115219-my...</a><p>And several of them have tutorials explaining how to use thier service.
comex大约 11 年前
Boxcar: <a href="https://boxcar.io" rel="nofollow">https:&#x2F;&#x2F;boxcar.io</a><p>Prowl (old): <a href="http://www.prowlapp.com" rel="nofollow">http:&#x2F;&#x2F;www.prowlapp.com</a>
nppc大约 11 年前
Try Beeper - <a href="https://beeper.in" rel="nofollow">https:&#x2F;&#x2F;beeper.in</a> It uses Telegram to send your push notifications.
aabalkan大约 11 年前
Alright, Pushover it is. <a href="https://pushover.net" rel="nofollow">https:&#x2F;&#x2F;pushover.net</a>