How to see the URL of a source code of a website?
I have a method that searches for movies in IMDB. Problem is, I only take into开发者_StackOverflow社区 account if the site returns a page with movie OPTIONS. If the site automatically finds the movie in question, my program breaks.
Is there a way for me to check the URL of source code in C#?
I think maybe you're trying to parse the page instead of using a web service to access the information. parsing a page of dynamic content is difficult, if you want them, you must create a parser capable of handling such situations you describe.
You can try these links
- Imdb Services
- IMDB API
AllowAutoRedirect = false;
精彩评论