Page 1 of 1

Is appery able to allow users to add RSS feed in the app?

Posted: Tue Jan 13, 2015 7:38 pm
by AC

I have followed the build a basic RSS app tutorial and I can make a page receive the rss resource. My questions is that whether I can make a function in my app and allow users to add more RSS resource as RSS reader?

Please advice


Is appery able to allow users to add RSS feed in the app?

Posted: Wed Jan 14, 2015 3:29 am
by AC

anyone can offer me some hints?


Is appery able to allow users to add RSS feed in the app?

Posted: Wed Jan 14, 2015 5:19 am
by Yurii Orishchuk

Hi AC,

Yes - you can dynamicaly specify all service request parameters when invoke service datasource..

Here is a code example:

pre

//Where: "dogsList2" is your service datasource name.
dogsList2.execute({
//Specify "url" to the service.
restservice1.execute({url: "http://google.com/"})

//Specify url string parameters. (works in all HTTP methods)
parameters: {"www": "aa"}
})

/pre

Regards.