Jump to content
UBot Underground

Checking Rss Feed For New Entries


Recommended Posts

hi,

I would like someone to point me in the right direction.  Im using an ibeacon on my iphone that posts to a RSS Feed.  So when I step in and out of the geofence it posts to RSS feed Entered home and exited home.   I would like to know is there a way so that I can check an RSS feed lets say every few minutes to see if there is a new entry and if it says away or home make it do something.

 

 

Here is what i want it to do.  I already make a bot that logs into clickdesk.com and changes my status to offline..  I answer alot of support chat windows and sometimes i leave my desk and forget to set my status to offline..  I already have that part done. Can someone tell me how to:

 

  1. Check RSS Feed for new Entry
  2. If Last entry is exited home then run my clickdesk bot and log change my status to offline.
  3. Else.  Dont do anything and keep checking

Thanks.

Link to post
Share on other sites

you can do it something like this

 

 

plugin command("Bigtable.dll""Clear large list""last scraped")
plugin command("Bigtable.dll""large List from text""last scraped""in 12:00
out 09:00
in 08:30"$new line"replace")
plugin command("Bigtable.dll""Clear large list""scraped B")
plugin command("Bigtable.dll""large List from text""scraped B""out 13:00
in 12:00
out 09:00
in 08:30"$new line"replace")
plugin command("Bigtable.dll""Compare large list""scraped B""last scraped""Remove duplicates")
alert($plugin function("Bigtable.dll""Large list return""scraped B"))
if($contains($plugin function("Bigtable.dll""Large list item""scraped B", 0),"out")) {
    then {
        alert("Log out")
    }
    else {
        alert("do nothing")
    }
}

 

I would right scraped B to a file then load from file last scraped rather keep in memory.

but this will give you a good start.

 

You will need large data plugin it's free

 

CD

example--rss feed comparer.ubot

  • Like 1
Link to post
Share on other sites
  • 3 weeks later...

yeah on android automation is a breeze,theirs loads of apps like that,I used tasker with a few plugins,it runs a drag and drop,its literally just like ubot but for using the phones features,sensors,messaging etc

 

,like autoremote auto voice auto location auto cast list goes on and on ha!(autoremote you can make a push notification between your phone and bot or other phones and bots,but both the phones and the bots of course are programmed to do something depending on the commands recieved,and being able to use google now's voice API to trigger bots at home,its a LOT of fun

 

basically I harness ubot to do the decision making,sort though lists,http get/posts or compile a file with the results tomy dropbox,since I would be better with that then tasker,like voice controlled youtube player with a chromecast,home security system,work apps etc

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...