rauth2 Decoder failed to handle access_token when I tried to connect with Box.com's API
问题 This is the code I have for connecting to Box, but I can't get box_storage.get_auth_session(data=data) to work. from rauth import OAuth2Service box_storage = OAuth2Service( name='Box', client_id=CLIENT_ID, client_secret=CLIENT_SECRET, authorize_url='https://www.box.com/api/oauth2/authorize', access_token_url='https://www.box.com/api/oauth2/token', base_url='https://www.box.com/' ) redirect_uri = 'http://127.0.0.1' params = { 'redirect_uri': redirect_uri, 'response_type': 'code', 'state':