### Description <!--A clear and concise description of what the bug is. --> **Minimal code-snippet showcasing the problem** <!-- Reports without code examples may be closed without investigating. --> <!-- Add your code snippet below between the backticks. --> ```python authentication_client = AuthenticationClient( app_id='x', app_host="x", app_secret='x', ) token = "x" authentication_client.get_user_info_by_access_token(token) ``` ### Expected behavior <!-- A clear and concise description of what you expected to happen. --> 返回用户资料 ### Actual behavior <!-- A clear and concise description of what actually happens. --> ```python return session.request(method=method, url=url, **kwargs) E TypeError: request() got an unexpected keyword argument 'token' ``` 我看了下代码,应该在`ProtocolHttpClient`的request方法内添加如下内容: ```python if "token" in kwargs: headers["authorization"] = "Bearer %s" % kwargs.pop("token") ``` 添加后可以正常调用该方法。