Questions tagged [feed]

A web feed is a data format used for providing users with frequently updated content.

A web feed is a data format used for providing users with frequently updated content.

A typical scenario of web feed use is:

  • a content provider publishes a feed link on their site which end users can register with an aggregator program (also called a feed reader or a news reader) running on their own machines;
  • doing this is usually as simple as dragging the link from the web browser to the aggregator. When instructed, the aggregator asks all the servers in its feed list if they have new content;
  • if so, the aggregator either makes a note of the new content or downloads it. Aggregators can be scheduled to check for new content periodically. Web feeds are an example of pull technology, although they may appear to push content to the user.
2620 questions
0
votes
1 answer

Differentiate categories from tags in a Wordpress RSS feed

I have a wordpress blog with an automatic generated rss feed (https://blog.pixelinnova.com/feed), but I can't find a way to differentiate the categories from the tags, they are all between the XML tags . For…
Fátima
  • 11
  • 3
0
votes
3 answers

Android: Implementing a pause until RSS feed is pulled from site

So, I've built an Ok RSS reader for a new sports app I'll be releasing soon. It will read feeds from various sports sites and display them. The problem I have is that the feeds are loading immediately on the start of an activity which requires an…
tjberte
  • 111
  • 2
  • 9
0
votes
1 answer

How can I create a image based feed in a flutter app?

I am trying to create an instagram style app on flutter, the only difference the feed is curated and not generated by user uploaded images. I have uploaded all the files I want to show to the user on Cloud Storage. I tried two different methods to…
0
votes
1 answer

Nest {% block %} in {% for %} Django template inheritance

I am developing a dictionary application using Django. One of the main themes of the app is displaying feeds of definitions. Specifically, I have: an "index" feed where new definitions are listed, a "headword" feed where definitions of a particular…
fredperk
  • 737
  • 1
  • 9
  • 22
0
votes
0 answers

React Hooks, Opening an articles content when button or link is clicked

I am working on a News Web Application in React.js, and I am trying to figure out how to route a user to another component's page containing more information about the article they clicked. I've tried a lot of things but I'm pretty lost. I created a…
Mac
  • 35
  • 5
0
votes
2 answers

Django rss media content parsing

Need help please. I am trying to build an rss-based feed in django. But I am finding media:content (url, medium, height and width) to be tricky. I have looked and looked, and ended up with this: class CustomFeed(Rss201rev2Feed): def…
0
votes
0 answers

How to fix TypeError: (0, _fetchNews.getHomeNews) is not a function in React Native?

I'm building a news reader app using React Native. However when I try to fetch the feed from a url it shows this error: I'm running the latest version of React Native and Nodejs. This shows when i run run-android: This is my News.js: class News…
quachhengtony
  • 125
  • 4
  • 17
0
votes
1 answer

Javascript function returning undefined

Its a bit strange. I am making a bitly api call and it returns undefined for all the calls, but if I add an alert() right before I get the link variable, it returns the correct link. Now if I add the alert here : function getBitlyLink(){ …
imgr8
  • 501
  • 4
  • 11
  • 25
0
votes
1 answer

Yahoo Pipes - Sort items, or pick only a limited number per source; is that possible?

I've merged several RSS feeds into one, the problem is one of them puts out way too many items, thereby "burying" the others. Is it possible to either limit the number of items per feed source (!) per day/hour or define that each feed will get at…
0
votes
1 answer

I'm Working on the RSS Feed in the django but it gives me an Error

So guys as you read earlier i'm working on the RSS Fedd in the django. i've done all the code but when i'm enter the url for any feed it gives me and error related that saying your code giving the None instead of HttpResponse and i don't know how to…
Encaledus
  • 51
  • 9
0
votes
1 answer

what is the differences between reverse and reverse_lazey methods in Django?

I can't use reverse() method in a class to generate url for example, reverse() doesn't work in generic views or Feed classes (reverse_lazy() should be used instead) but I can use reverse() in functions. what is the differences ? take a look at…
Farid Darabi
  • 59
  • 1
  • 6
0
votes
1 answer

User shot - How to display shots from only users you follow (excluding my own)

How to display shots from only users you follow (excluding my own)? I think the problem is in the feed, but I'm very new in Rails, and have no idea how to do it. thanks Devs! shot from show page [enter image description here][1] my…
0
votes
1 answer

Preserve Emojis with Get-Content Powershell

I want to preserve Emojis with Get-Content. When I pull the string from the feed I get the following result: $WebResponse = Invoke-RestMethod $website $str_outputNAME = $feed.title Wanna try? But when I save the content of the file and append it…
Georodin
  • 191
  • 1
  • 2
  • 14
0
votes
1 answer

How to include an article's full text in a PHP based RSS feed?

My feed.php page pulls content from the mySQL database to generate the feed. For years I only had a single sentence that I put into the description field. Now I would like to instead include the full text. But the RSS 2.0 spec doesn't have a…
PioneerMan
  • 303
  • 4
  • 12
0
votes
1 answer

How to get "breaking news" on custom ContextualWebSearch?

I am using Contextual Web search REST API called Custom search. https://rapidapi.com/contextualwebsearch/api/custom-search Here I can search any news topic i like from the newssources i want. So far so good! But i now try to make a "home page" with…
DiddanDo
  • 401
  • 1
  • 5
  • 15