/**
* Gets the token URL that's used to request access tokens. The default value is
* "https://www.box.com/api/oauth2/token".
* The URL is created from {@link BoxAPIConnection#baseURL} and {@link BoxAPIConnection#TOKEN_URL_SUFFIX}.
*
* @return the token URL.
*/
Could you kindly consider updating all code comments that currently reference https://www.box.com/api/oauth2/token to the officially supported URL https://api.box.com/oauth2/token? The current URL (https://www.box.com/api/oauth2/token) is not supported and has caused confusion for some customers.
Reference: https://developer.box.com/reference/post-oauth2-token/
Current: https://www.box.com/api/oauth2/token
Replace with: https://api.box.com/oauth2/token
e.g.
https://github.com/box/box-java-sdk/blob/main/src/main/java/com/box/sdk/BoxAPIConnection.java