How to bypass 403 forbidden ex开发者_StackOverflowception, when request is:
HTTPWEBREQUEST
try
{
}
catch
{
// what do I write in here
}
You can't "bypass" it - if the web server is tell you you're not allowed to get the data, you can't get the data. If you don't need that response then that's fine - handle the exception and keep going in whatever way you need to.
Alternatively, work out why you're getting that response, and perform whatever authentication you need in order to make a successful request. Without knowing anything about what you're trying to fetch, it's hard to suggest anything more concrete.
精彩评论