有没有说明如何IPhone上使用APNS和如何设置的东西示例项目? 目前,我在看的文件,但它会是不错的一些工作代码挑开,看到这一切是如何一起工作?
我似乎无法找到使用谷歌或在iPhone开发中心什么。
有没有说明如何IPhone上使用APNS和如何设置的东西示例项目? 目前,我在看的文件,但它会是不错的一些工作代码挑开,看到这一切是如何一起工作?
我似乎无法找到使用谷歌或在iPhone开发中心什么。
有关设置推送通知服务最糟糕的是供应。 我碰到的是,有一个证书,并在你从苹果公司的网站上下载的.cer文件的一个关键的主要绊脚石,我写在C#中的系统服务,它发出的通知和连接不断失败,因为我已经导出的证书而不是重点。
我不记得谁最初写这个,这里是在Python代码,帮助我,当我第一次测试通知服务一点点。 我喜欢它,因为它是非常简单和测试过程中效果很好。
import socket, ssl, json, struct
# device token returned when the iPhone application
# registers to receive alerts
deviceToken = 'XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX XXXXXXXX'
thePayLoad = {
'aps': {
'alert':'Oh no! Server\'s Down!',
'sound':'k1DiveAlarm.caf',
'badge':42,
},
'test_data': { 'foo': 'bar' },
}
# Certificate issued by apple and converted to .pem format with openSSL
# Per Apple's Push Notification Guide (end of chapter 3), first export the cert in p12 format
# openssl pkcs12 -in cert.p12 -out cert.pem -nodes
# when prompted "Enter Import Password:" hit return
#
theCertfile = 'cert.pem'
#
theHost = ( 'gateway.sandbox.push.apple.com', 2195 )
#
data = json.dumps( thePayLoad )
# Clear out spaces in the device token and convert to hex
deviceToken = deviceToken.replace(' ','')
byteToken = bytes.fromhex( deviceToken ) # Python 3
# byteToken = deviceToken.decode('hex') # Python 2
theFormat = '!BH32sH%ds' % len(data)
theNotification = struct.pack( theFormat, 0, 32, byteToken, len(data), data )
# Create our connection using the certfile saved locally
ssl_sock = ssl.wrap_socket( socket.socket( socket.AF_INET, socket.SOCK_STREAM ), certfile = theCertfile )
ssl_sock.connect( theHost )
# Write out our data
ssl_sock.write( theNotification )
# Close the connection -- apple would prefer that we keep
# a connection open and push data as needed.
ssl_sock.close()
还有被称为apn_on_rails一个轨道的宝石,似乎工作得很好,如果你正在开发一个Rails应用程序,我只看到它今天能够从控制台发送通知。
在iPhone端你只需要调用以下为所有类型的通知登记:
[[UIApplication sharedApplication] registerForRemoteNotificationTypes: UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound | UIRemoteNotificationTypeAlert];
要接收设备令牌,你需要实现以下的委托方法:
- (void)application:(UIApplication *)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData *)deviceToken
- (void)application:(UIApplication *)application didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
在测试过程中你可以踢deviceToken与NSLog的控制台,然后将其粘贴到Python脚本以上,在生产中显然需要建立一些方法来获得令牌服务器。
此外,在生产中你需要查询苹果的反馈服务,并从谁删除该应用的用户删除设备令牌。
一个良好的开始是城市飞艇 。 你可以建立一个免费的基本帐户,将尽一切发送推送通知到苹果的服务器的服务器端的工作。 他们还做走你完成所有的让你的应用程序与他们的服务工作所需的步骤了伟大的工作,并具有优异的示例代码,显示如何注册的通知应用程序。
我没有其他联盟与他们不是被其服务的用户快乐等。
如果有帮助,我写了一个Python库,PyAPNs,用于与服务器端的推送通知服务进行交互:
http://github.com/simonwhitaker/PyAPNs
http://blog.boxedice.com/2009/07/10/how-to-build-an-apple-push-notification-provider-server-tutorial/
这一次帮了我很多与制作用PHP在Linux服务器提供商端代码。
真的是没有太多的代码在iPhone上侧写。 您需要拿到iPhone或iPod Touch的独特标记,然后转发该令牌到服务器。 获取令牌要求UIApplication的一个电话,但有获得,为您的服务器没有预定义的方式。 我的一个应用程序的执行HTTP POST到把令牌到数据库的PHP脚本。
如果您想了解配置和证书的设置,等等,你可以检查出来的苹果推送通知服务编程指南。
我知道这是一个非常古老的问题,并已收到了很多答案,但我发现的教程雷伊Wenderlich非常有用,希望分享它APNS初学者。 这是非常有用的,很容易理解。
我知道这是晚了,但你应该看到MonoPush项目。 看来他们将提供新的途径推一体化以及详细的统计信息,包括地图上的统计数据。
看在iPhone开发中心论坛上,据说有很多的服务器端代码示例来跟苹果的推送服务器。
这里的jessecurry的测试脚本的测试PHP5版本。 它使用“ 增强的消息格式 ”,并试图捕捉和从苹果显示错误。 这可能给的指示,以什么地方错了你的消息。
// Settings
$deviceToken = 'xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx xxxxxxxx';
$apnsCert = 'apns-dev.pem';
$apnsHost = 'gateway.sandbox.push.apple.com';
$apnsPort = 2195;
// Prepare payload
$payload =
array(
'aps' => array(
'alert' => 'Hi, this is an alert!',
'badge' => 8
)
);
$payload = json_encode($payload);
print($payload . "\n");
// Connect to Apple Push Notification server
$streamContext = stream_context_create();
stream_context_set_option($streamContext, 'ssl', 'local_cert', $apnsCert);
$apns = stream_socket_client('ssl://' . $apnsHost . ':' . $apnsPort, $error, $errorString, 2, STREAM_CLIENT_CONNECT, $streamContext);
if (!$apns) {
die('Error creating ssl socket');
}
// Don't block on reading from the socket
stream_set_blocking ($apns, 0);
// Send payload in enhanced message format ( http://developer.apple.com/library/ios/#documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/CommunicatingWIthAPS/CommunicatingWIthAPS.html#//apple_ref/doc/uid/TP40008194-CH101-SW1 )
$apnsMessage =
// Command "1"
chr(1)
// Identifier "88"
. pack('N', 88)
// Expiry "tomorrow"
. pack('N', time() + 86400)
// Token length
. chr(0) . chr(32)
// Device token
. pack('H*', str_replace(' ', '', $deviceToken))
// Payload length
. chr(0) . chr(strlen($payload))
// Actual payload
. $payload . $payload;
fwrite($apns, $apnsMessage);
// Pause for half a second to check if there were any errors during the last seconds of sending.
usleep(500000);
checkAppleErrorResponse($apns);
// Close connection -- apple would prefer that we keep
// a connection open and push data as needed.
fclose($apns);
function checkAppleErrorResponse($apns)
{
$responseBinary = fread($apns, 6);
if ($responseBinary !== false && strlen($responseBinary) == 6)
{
print(
"\n"
.'Error message recieved from Apple.'."\n"
.'For the meaning, refer to: "Provider Communication with Apple Push Notification Service"'."\n"
);
$response = unpack('Ccommand/Cstatus_code/Nidentifier', $responseBinary);
var_dump($response);
}
}
尝试NWPusher在GitHub上项目。 它提供了OS X和iOS应用手动发送推送通知,或者你可以直接使用附带的Objective-C库。