I am receiving \"The remote server returned an error: (403) Forbidden\" error message on the block of code below. Specifically this line is failing: var response =
You might need to specify credentials
request.Credentials = CredentialCache.DefaultCredentials;
or you if you need to pass specific credentials pass:
request.Credentials = new NetworkCredentials("user", "password");
More information about NetworkdCredential Class