Hello! I'm trying to make requests to V2 API with incorrect details and I'm getting error messages of the following format. Also, added the CURL requests made to trigger the errors.
Please confirm if this format will stick around. Are there any links where this is documented?
curl -iX GET https://api.dropbox.com/2/team/get_1info
Unknown API function: "team/get_1info"
----------
curl -iX GET https://api.dropbox.com/2/team/get_info -H "Authorization: Bearer dsdf"
Error in call to API function "team/get_info": The given OAuth 2 access token is malformed.
-------
curl -iX GET https://api.dropbox.com/2/team/get_info -H "Authorization: Bearer "
Error in call to API function "team/get_info": Invalid authorization value in HTTP header "Authorization": "Bearer". Expecting "Bearer <oauth2-access-token>".
----
curl -iX GET https://api.dropbox.com/2/team/get_info -H "Authorization1: Bearer "
Error in call to API function "team/get_info": Must provide HTTP header "Authorization" or URL parameter "authorization".
Also, is there any reason, why the response mimetype is `text/plain` instead of `application/json`?