enginkizil / FeedEk

FeedEk jQuery RSS/ATOM Feed Plugin
https://jquery-plugins.net/FeedEk/FeedEk.html
MIT License
206 stars 107 forks source link

Failed to load resource: net::ERR_BLOCKED_BY_CLIENT #61

Closed moayadnajd closed 5 years ago

moayadnajd commented 5 years ago

Failed to load resource: net::ERR_BLOCKED_BY_CLIENT s3.buysellads.com/ac/bsa.js:1 Failed to load resource: net::ERR_BLOCKED_BY_CLIENT syndication.twitter.com/i/jot?l=%7B%22widget_origin%22%3A%22https%3A%2F%2Fjquery-plugins.net%2FFeedEk%2FFeedEk-examples.html%22%2C%22widget_frame%22%3Afalse%2C%22language%22%3A%22en%22%2C%22message%22%3A%22m%3Anocount%3A%22%2C%22category%22%3A%22tfw_client_event%22%2C%22triggered_on%22%3A1546640380472%2C%22dnt%22%3Afalse%2C%22client_version%22%3A%22d3704bd%3A1546534604449%22%2C%22format_version%22%3A1%2C%22event_namespace%22%3A%7B%22client%22%3A%22tfw%22%2C%22page%22%3A%22button%22%2C%22section%22%3A%22share%22%2C%22action%22%3A%22impression%22%7D%7D:1 Failed to load resource: net::ERR_BLOCKED_BY_CLIENT query.yahooapis.com/v1/public/yql?q=SELECT%20channel.item%20FROM%20feednormalizer%20WHERE%20output%3D%22rss_2.0%22%20AND%20url%20%3D%22http%3A%2F%2Fjquery-plugins.net%2Frss%22%20LIMIT%202&format=json&diagnostics=false&callback=jQuery1910102116569936099521546640379971&=1546640379972:1 Failed to load resource: net::ERR_NAME_NOT_RESOLVED query.yahooapis.com/v1/public/yql?q=SELECT%20channel.item%20FROM%20feednormalizer%20WHERE%20output%3D%22rss_2.0%22%20AND%20url%20%3D%22http%3A%2F%2Fjquery-plugins.net%2Frss%22%20LIMIT%203&format=json&diagnostics=false&callback=jQuery1910102116569936099521546640379973&=1546640379974:1 Failed to load resource: net::ERR_NAME_NOT_RESOLVED query.yahooapis.com/v1/public/yql?q=SELECT%20channel.item%20FROM%20feednormalizer%20WHERE%20output%3D%22rss_2.0%22%20AND%20url%20%3D%22http%3A%2F%2Fjquery-plugins.net%2Frss%22%20LIMIT%204&format=json&diagnostics=false&callback=jQuery1910102116569936099521546640379975&=1546640379976:1 Failed to load resource: net::ERR_NAME_NOT_RESOLVED query.yahooapis.com/v1/public/yql?q=SELECT%20channel.item%20FROM%20feednormalizer%20WHERE%20output%3D%22rss_2.0%22%20AND%20url%20%3D%22http%3A%2F%2Fjquery-plugins.net%2Frss%22%20LIMIT%202&format=json&diagnostics=false&callback=jQuery1910102116569936099521546640379977&=1546640379978:1 Failed to load resource: net::ERR_NAME_NOT_RESOLVED

TAMU-MIRC-SOFTWARE commented 5 years ago

I believe this FeedEk is no longer working because it was using YQL which is now retired as of January 3rd. You'll have to update the code.

See page below https://developer.yahoo.com/yql/?guccounter=1

efadyn commented 5 years ago

I am experiencing this same error on two HTML websites my firm inherited. Can anyone direct me how to update the code to get this functioning again since YQL is no longer working? We were using it to display recent blog posts, and the link above seems to reference weather. Sorry if this is very ignorant, I am a WordPress developer and this is out of my area of expertise. Thanks.

TAMU-MIRC-SOFTWARE commented 5 years ago

The solution involves creating your own RSS parser using a library such as this one https://www.npmjs.com/package/rss-parser. (in your case the web version of the code).

Then configuring the HTML using the parser. You have two options: one is to create your own layout given the JSON array from the Parser or you can try to recreate what this library did. I can't remember exactly, but in general, it creates a division with a specific ID, then it uses jQuery to create an li element for each item in the feed.

It's software specific exactly how to do the conversion but the general process is use the new RSS feed and try to recreate that list this library used to do.

efadyn commented 5 years ago

Thank you. I will take a look at that link.

enginkizil commented 5 years ago

Hello, FeedEk v3.1.0 released. I created custom feed api insted of using YQL API. YQL API is not using anymore.