0

我正在开发一个使用 Dropbox SDK 的 ios 应用程序。我想在编辑 Dropbox 中的任何文件时通知用户。我不知道 Dropbox 是否提供任何 API,但我认为 Apple 的推送通知会很好。根据我的研究,Dropbox SDK 中有类似 /delta 的东西,但是互联网上没有足够的资源或示例代码来理解 /delta。

我想要的是:

Dropbox 文件更改----> 我的服务器检测到更改并发送到苹果-----> 苹果推送通知服务发送通知--------> IOS 设备接收通知

所以目前我完成了我的应用程序的推送通知部分,我可以通过本地 apache 服务器和 php 脚本向我的应用程序发送一个简单的通知。设备收到通知。

我的问题是如何实现

这部分Dropbox 文件更改----> 我的服务器检测到更改内容并发送给苹果----->

我不知道如何解析我的保管箱文件夹的 RSS 提要。我应该使用什么语言来解析 Dropbox 上的数据?我是否应该不断轮询并检查是否有任何文件被编辑?或者有没有办法让 dropbox 直接向我的服务器或苹果通知服务器发送通知,这样我就不需要一直轮询更改?

提前致谢

4

1 回答 1

0

您想要的是创建一个 php 脚本来解析您的 rss 提要并将推送通知发送到您的应用程序。并使用允许 cron 命令的服务器,以便您可以连续运行此脚本并检查更新。

<?php

//set the time zone
date_default_timezone_set('America/New_York');

//get xml file from dropbox event page
$completeurl ='your xml url';

//equal badge to zero 
$badge=0;

//format date and time
$format = 'D, d M Y H:i:s O';

// Put your alert message here:
$message;


//parse the xml file
$item = $xml->channel->item;
for ($i = 0; $i < sizeof($item); $i++) {

    $title = $item[$i]->title;
    $description=$item[$i]->description;
    $pubDate = $item[$i]->pubDate;


    //search title for word 'edited'
    if (strpos($title,'edited') !== false) {
        echo "Edited word is found in title true \n";


        $inDate  = DateTime::createFromFormat( $format, $pubDate);//input date and time
        $postDate = new DateTime();// current date and time

        $diff = $inDate->diff( $postDate); // difference current-input

        // If the total number of days is > 0, or the number of hours > 0, or the number of minutes > 30, then its an invalid timestamp.
        if( $diff->format( '%a') > 0 || $diff->format( '%H') > 0 || $diff->format( '%i') > 30) {
            echo "update is not recent\n";
    }else{
        //if true increase badge by one

        $badge = $badge + 1;
    }
}



}
//print total updates
echo "Total Badge= " . $badge. "\n";


//if total updates is bigger or equal to one send notification
if($badge>=1){
// Put your device token here (without spaces):
$deviceToken = 'yourdevicetoken';

// Put your private key's passphrase here:
$passphrase = 'yourpassphrase in your.cem file';


////////////////////////////////////////////////////////////////////////////////

$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',
    'badge' => $badge
    );

// 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);
}else
    echo "There is no update available \n";


?>
于 2012-09-19T15:22:39.740 回答