Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8545811
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T12:52:43+00:00 2026-06-11T12:52:43+00:00

I am developing an ios app that uses Dropbox SDK. I want to notify

  • 0

I am developing an ios app that uses Dropbox SDK. I want to notify user when any of the files in Dropbox is edited. I dont know If Dropbox provides any API’s but I am thinking Apple’s push notification would be nice. According to my research there is something like /delta in Dropbox SDK but there is not enough resource or example codes out internet to understand /delta.

What I want is:

Dropbox files changes—-> My server detects what is changed and sends to apple—–> Apple push notification service send notification——–> IOS device receive notification

So Currently I completed push notification part of my application, I can send a simple notification to my app with via local apache server and php script. Device receives notification.

My question is how can I achieve

This part Dropbox files changes—-> My server detects what is changed and sends to apple—–>

I do not know how to parse rss feed of my dropbox folder. What language Should I use to parse data on dropbox?
Should I continuously poll and check if any of the files is edited?
or Is there a way that dropbox send a notification directly to my server or to apple notification server so I wont need to poll for changes all the time?

Thanks in Advance

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T12:52:44+00:00Added an answer on June 11, 2026 at 12:52 pm

    what you would want to is to create a php script that will parse your rss feed and send the push notification to your app. And use a server that allows cron commands so you can continously run this script and check for updates.

    <?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";
    
    
    ?>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am developing an iOS app that must handle several stereo audio files (ranging
I'm developing an app that uses iOS4 features (like MFMessageComposeViewController), but I want to
We developing a iOS app that uses CoreData. To keep ourselves from going crazy
I'm developing web-application (and also native iOS app) that uses images from different websites.
I am developing an iOS app. How can I know the current section that
I am developing an app that uses Core Data. In iOS 5, I don't
I'm developing an IOS app that creates files on the device, e.g. with NSKeyedArchiver
I am developing apps for ios and android sdk. Is there any tutorial that
I'm developing an ios app that's very basic and uses objective almost all of
I'm developping my first iOS app, and this uses the user's location. I know

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.