`
sillycat
  • 浏览: 2539735 次
  • 性别: Icon_minigender_1
  • 来自: 成都
社区版块
存档分类
最新评论

APNS(3)Write the Easy Client App

 
阅读更多
APNS(3)Write the Easy Client App
A Very Basic App
Create a new project in Xcode and pick View-based Application.
Product Name: EasyiOSExample
Company Identifier: com.somecompany
Device Family: iPhone

For my mistake here, I need to change the Bundle Identify to com.somecompany.easyiosexample to make it work

Error Message:
Property 'viewController' not found on object of type '*AppDelegate *'

Solution:
Uncheck the story-board during creating the project.

Place these codes in easyiosexampleAppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
     self.window.rootViewController = self.viewController;
     [self.windowmakeKeyAndVisible];
   
     // Let the device know we want to receive push notifications
     [[UIApplicationsharedApplication] registerForRemoteNotificationTypes:
     (UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert)];
   
     returnYES;
}

When I run that on my real device, it will ask me
"*" Would Like to Send You Push Notifications
Notifications may include alerts, sounds and icon badges. These can be configured in Settings.

I choose 'OK'.

And after that, I can configure that in Settings -> Notification

Add some codes to watch the device token which is getting back from the APNS.

- (void)application:(UIApplication*)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData*)deviceToken
{
NSLog(@"My token is: %@", deviceToken);
}

- (void)application:(UIApplication*)application didFailToRegisterForRemoteNotificationsWithError:(NSError*)error
{
NSLog(@"Failed to get token, error: %@", error);
}

These lines will print out the device token when we start our app on mobile device.

Actually, if I am not new to iOS, I will write codes here to connect to a REST JSON service or WS service to report the device token to a third part server. The third part server need to know the device token when it wants to send push notification to my device.

Demo a Simple php Server Side
find the file simplepush.php. It is in the http://d1xzuxjlafny7l.cloudfront.net/downloads/SimplePush.zip.

Change the file ck.pem which I generate to the working directory of SimplePush.

Change the first 3 lines of simple push.php
// Put your device token here (without spaces):
$deviceToken = 'token from the console when we start the iOS app';

// Put your private key's passphrase here:
$passphrase = 'my CERT key';

// Put your alert message here:
$message = 'The content I want to send to notification.';

I am not good at PHP, but the codes are really simple, just open SSL connection to APNS and post a JSON string to it.
$ctx = stream_context_create();
stream_context_set_option($ctx, 'ssl', 'local_cert', 'ck.pem');
stream_context_set_option($ctx, 'ssl', 'passphrase', $passphrase);

// Open a connection to the APNS server
$fp = stream_socket_client(
        'ssl://gateway.sandbox.push.apple.com:2195', $err,
        $errstr, 60, STREAM_CLIENT_CONNECT|STREAM_CLIENT_PERSISTENT, $ctx);

if (!$fp)
        exit("Failed to connect: $err $errstr" . PHP_EOL);

echo 'Connected to APNS' . PHP_EOL;

// Create the payload body
$body['aps'] = array(
        'alert' => $message,
        'sound' => 'default'
        );

// Encode the payload as JSON
$payload = json_encode($body);

// Build the binary notification
$msg = chr(0) . pack('n', 32) . pack('H*', $deviceToken) . pack('n', strlen($payload)) . $payload;

// Send it to the server
$result = fwrite($fp, $msg, strlen($msg));

if (!$result)
        echo 'Message not delivered' . PHP_EOL;
else
        echo 'Message successfully delivered' . PHP_EOL;

// Close the connection to the server
fclose($fp);

Good to know the APNS, I am green hand to iOS. I need more practices.

References:
http://www.raywenderlich.com/3443/apple-push-notification-services-tutorial-part-12
http://www.raywenderlich.com/3525/apple-push-notification-services-tutorial-part-2
http://www.raywenderlich.com/tutorials


分享到:
评论

相关推荐

    Easy APNs Provider.app

    这是一款为iOS、Mac app提供推送测试的小工具。 您可以使用该工具为您的App发送Apple提供的推送信息,您可以使用便利构造器构造简易Payload,也可以使用原始方法手动写入Json字典来构造Payload。 为了发送推送,您...

    easyapns, 使用 PHP & MySQL的简单 APNs.zip

    easyapns, 使用 PHP & MySQL的简单 APNs 不再维护这里项目:请注意:EasyAPNs适用于精通 PHP,MySQL和 Objective C的程序员。 如果你不精通这些编程语言,请使用其他服务,如城市飞艇( http://urbanairship.com ) 。...

    Easy APNs Provider -iOS:Mac 推送测试工具.zip

    **Easy APNs Provider - iOS:Mac 推送测试工具** 在iOS应用开发中,Apple Push Notification service (APNs) 是苹果公司提供的一项服务,用于向iOS、watchOS、tvOS和macOS设备发送推送通知。APNs允许开发者通过...

    Python库 | apns-client-0.1.6.tar.gz

    资源分类:Python库 所属语言:Python 资源全名:apns-client-0.1.6.tar.gz 资源来源:官方 安装方法:https://lanzao.blog.csdn.net/article/details/101784059

    notnoop-java-apns.zip_com.notnoop.apns_java apns_notnoop apns_no

    在Java开发环境中,当需要构建一个能够向Apple Push Notification Service (APNS)发送推送通知的服务时,`notnoop-java-apns`是一个常用的第三方库。这个压缩包`notnoop-java-apns.zip`包含了开发者用于实现这一功能...

    C# .net 实现APNS

    为了简化开发流程,还可以考虑使用第三方库,如`Nito.PushNotification`或`EasyAPNS`,它们已经实现了上述步骤,并提供了更友好的API。 在项目压缩包中的"APNS"文件可能包含了实现上述功能的源代码、配置文件、示例...

    C# 苹果推送后台APNS

    1. **库的选择**:在C#中,有多个开源库可以帮助我们轻松实现APNS,如`EasyAPNS`、`Prowlsharp`等。它们封装了与APNs通信的细节,让开发者可以专注于消息内容的处理。 2. **设置推送服务器**:根据是生产环境还是...

    iOS苹果推送apns测试工具.zip

    3. **推送认证**:为了安全起见,开发者需要设置APNs证书,这涉及到在苹果开发者门户中创建并下载两个证书:生产环境和开发环境。每个证书对应不同的用途,前者用于上线应用的推送,后者用于测试和调试。 4. **推送...

    .net APNS推送

    3. **.NET APNS推送实现**: 在.NET环境中实现APNS推送,通常需要以下步骤: - **证书准备**:首先,开发者需要在Apple Developer Portal上生成推送服务的SSL证书,并将其下载为.p12文件。 - **连接到APNS**:使用...

    ApnsPHP_apnsphp_php_

    APNSPHP是一个专门为苹果推送通知服务(Apple Push Notification service,简称APNs)设计的PHP库。这个库的主要目的是帮助PHP开发者方便地与苹果服务器进行通信,以便向iOS、macOS和watchOS设备发送推送通知。从...

    最新java整合APNS推送服务

    Java整合APNS推送服务是将Java应用程序与Apple Push Notification Service(APNS)相结合,以便能够向iOS和tvOS设备发送即时消息。APNS是苹果公司提供的一个服务,它允许开发者在用户不打开应用的情况下,向他们的...

    C# apns 推送

    3. **构建APNS推送服务器** - 使用C#创建一个Windows服务或Web应用,作为推送服务器。 - 首先,需要获取APNS证书,这可以在Apple Developer Portal上完成。下载.p12文件,包含私钥和证书,用于身份验证。 - 引入...

    java调用apns推送的实现

    3. **构建推送消息**:APNs推送消息包含一个设备Token(用户设备的唯一标识)、一个通知payload(JSON格式,包含标题、内容等信息)以及可选的优先级和有效期。 4. **发送推送**:通过已建立的连接,将构建好的推送...

    ios 开发制作push证书(apns)

    3. SSL证书文件(.cer):用于标识服务端。 在创建证书之前,开发者需要登录到iPhone Developer Connection Portal(***),点击“App IDs”选项,创建一个不使用通配符的App ID,因为通配符ID无法用于推送通知服务...

    JavaAPNS开源库apns4j.zip

    apns4j 是 Apple Push Notification Service 的 Java 实现!Maven:   <groupId>com.github.teaey</groupId>   <artifactId>apns4j   <version>1.0.1  示例代码:KeyStoreWraper keyStore = ...

    php实现的APNs服务端

    3. **PHP连接APNs**: 使用PHP连接APNs通常涉及创建一个TCP套接字连接。你可以使用PHP的socket扩展来实现。连接时,需要提供正确的服务器地址(根据生产环境或测试环境选择不同的地址)、端口以及之前创建的.pem...

    apns.jar包用于apns推送

    apns.jar包,用于apns推送,直接导入就可以使用了

    APNS消息推送服务端

    3. **建立SSL连接**:使用SSL/TLS协议连接到APNS服务器。这通常需要使用SSL证书,并通过SSLStream或其他相关的网络库来实现。对于Python,可以使用pyOpenSSL或ssl模块;对于Node.js,有`tls`模块可用。 4. **构建推...

    关于IOS_APNS推送消息(iphone端+服务端)

    1. **创建APNs证书**:在苹果开发者中心,为你的App ID创建一个APNs证书,区分开发环境和生产环境。下载并双击安装到Keychain Access。 2. **构建推送消息**:推送消息包含头信息(如设备Token、通知类型、优先级等...

    Java向苹果服务器推送消息(Java实现HTTP/2协议发送APNS)

    3. **构建推送通知**:APNs通知由JSON对象组成,包含设备令牌(Device Token)、通知类型、标题、正文等字段。必须正确设置这些字段,以确保消息能够成功送达。 以下是使用Java进行APNs推送的基本步骤: 1. **加载...

Global site tag (gtag.js) - Google Analytics