How can you detect when somebody else's web page was last updated (or was changed)?
|
|
The last changed time comes with the assumption that the web server provides accurate information. Dynamically generated pages will likely return the time the page was viewed. However, static pages are expected to reflect actual file modification time. This is propagated through the HTTP header |
||||
|
|
|
01. Open the page for which you want to get the information. 02. Clear the address bar [where you type the address of the sites]: and type or copy/paste from below:
03. Press Enter or Go button. |
|||||||
|
|
In general, there is no way to know when something on another site has been changed. If the site offers an RSS feed, you should try that. If the site does not offer an RSS feed (or if the RSS feed doesn't include the information you're looking for), then you have to scrape and compare. |
|||
|
|
Another Website Has ChangedThere are two possible situations for the website's content: it is static or it is dynamic. Static ContentFor static sites:
Write a shell script with the following algorithm:
Dymamic ContentFor web pages that change, then you will need an additional step:
Since Dymamic Server-generated ContentIf the website uses server-side technologies (PHP, SSI, Servlets, etc.) to generate content, a more complicated solution is necessary. One possible solution would be to check if a certain percentage of the content is the same. Another Web Page Has ChangedIf you need to check if a single web page has changed (for example, a license agreement), then the solution is much simpler:
Good luck! |
||||
|