arduino / reference-en

Editable source for the Arduino Reference
https://www.arduino.cc/reference/en/
Other
165 stars 732 forks source link

Documentation of Serial yields errors 403 Forbidden #996

Closed edgar-bonet closed 3 days ago

edgar-bonet commented 1 week ago

The documentation of the Serial object contains many links to pages documenting the individual methods of the object. All these links return an HTTP error “403 Forbidden”, with a human-unfriendly XML payload looking like this:

<?xml version="1.0" encoding="UTF-8"?>
<Error>
  <Code>AccessDenied</Code>
  <Message>Access Denied</Message>
  <RequestId>MYG54Q9601CDVC8V</RequestId>
  <HostId>DYvuvKPnH6PVYmkazgm6JpOOLzCOdu/MdW9+2q5zc6KVexED91kWxemzSvapAywEQX9aPjn4xUQ=</HostId>
</Error>

The links can be fixed by replacing, within the URL, the word Serial with serial (with lowercase “s”). For example:

edgar-bonet commented 3 days ago

Closing the issue as it appears the problem has been fixed.

Thanks!