Request to change token_type content when obtaining access token with API
When obtaining an access token for the Box API, the specification returns the value "bearer" with the first "B" in lowercase as the tokentype parameter, but if you set "bearer ${accesstoken}" to the value of the authorization header and execute the Box API, a 400 Bad Request will be returned. If "bearer" is changed to "Bearer", it will be processed correctly.
I would like the obtained token_type value to be "Bearer", which can be processed normally by Box API.
Box APIのアクセストークン取得時、tokentypeパラメータとして先頭の"B"が小文字で"bearer"という値が返却される仕様だが、authorizationヘッダーの値に"bearer ${accesstoken}"をセットしてBox APIを実行すると400 Bad Requestとなる。"bearer"を"Bearer"とすると正常に処理される。
取得されるtoken_typeの値を、Box APIで正常処理できる"Bearer"にしてもらいたい。
