Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hello Great People all over.

I hope you all doing great!

Im to fetch a web news and display the content into another web site.
my search leaded me to many scripts like using Google API.
my Question i that: is there any specific programming language to learn that can help me in doing this without using google API?

In advance thank you very much indeed
Posted

Well, your question has some flaws (aside of the legal part):
- What kind of news? RSS feeds, or you want to extract content from a web page?
- As a web page is made of server side and client side, the major question is if you want to perform this fetching on client or server side
- Google API is not a script it is an API. You can use it from script languages, but not only.
- If you want to do something on client side, you have no other option but to learn and use javascript
- This kind of tasks are better performed on server side for many reasons (by using Google API, you actually use google server infrastructure to perform different tasks).
- If you want to do server side web development, you have to choose based on your current skills, your professional expectation for the future in this field, and of course based on the platform you will deploy to. The simplest and most common is to start with PHP[^], but if you can, better start learning C#[^].

[Update based on OP's clarification]
First of all, if you don't understand what's client and server side in a web application, I don't know, what your expectations are...
But let's stick to RSS feeds, look at the following links. You don't need to reinvent the wheel. There are several RSS readers for all major languages. Choose whichever you want.
Client side:
http://designshack.net/articles/javascript/build-an-automated-rss-feed-list-with-jquery/[^]
http://www.jqueryrain.com/2012/07/best-jquery-rss-feed-reader-tutorial-plugin-examples/[^]
Server side:
Python: https://wiki.python.org/moin/RssLibraries[^]
PHP: http://www.the-art-of-web.com/php/rss-example/[^]
And so on...
 
Share this answer
 
v2
Comments
Zoltán Zörgő 29-Apr-14 6:28am    
OP:

Dear Zorgo i would really like to thank you very much!
You have lighten me some spots that i didnt know, so thanx alot!
1- By fetching web news, i mean RSS feeds, let say CNN news etc.
2- Kindly i didnt understand what u meant by " performing the fetch on client or server side". what i want to do is taking the news (RSS) of CNN or BBC and display them on another web site; for example display the news on my own website.

Just to add if u dont mind. what do u thing about PYTHON language, i read that there is a module called "URLLIB & URLLIB2" that can be used in performing this task.

Again and agian thank alot for ur time and help Zoltan
Dear Zorgo i would really like to thank you very much!
You have lighten me some spots that i didnt know, so thanx alot!
1- By fetching web news, i mean RSS feeds, let say CNN news etc.
2- Kindly i didnt understand what u meant by " performing the fetch on client or server side". what i want to do is taking the news (RSS) of CNN or BBC and display them on another web site; for example display the news on my own website.

Just to add if u dont mind. what do u thing about PYTHON language, i read that there is a module called "URLLIB & URLLIB2" that can be used in performing this task.

Again and agian thank alot for ur time and help Zoltan
 
Share this answer
 
Comments
Zoltán Zörgő 29-Apr-14 6:26am    
First of all, this is not an answer, this is a comment to my answer. Please remove it.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900