0

This is bugging me, because I'm a complete newbie in web interaction:

How can I download a web page that is dynamically autoloading?

For instance, twitter's feed, facebook's wall, etc. The only restriction is that I'd like to do this on a client, with a background job, no browser involved. I'd prefer to use C#, but any language is completely welcome.

senseiwa
  • 2,369
  • 3
  • 24
  • 47

1 Answers1

1

You can try to achieve your goal using a headless browser like phantomJS as discussed here.

Also check if the service you want to get data from offers you an API, which is always a better solution! Accessing websites in an automated way is no good practice.

Community
  • 1
  • 1
philsch
  • 1,004
  • 11
  • 19