Hi! I'm just testing the Basic Usage sample and doing a POST to /login without parameters is giving 500 internal server error ```python username = request.json.get('username', None) AttributeError: 'NoneType' object has no attribute 'get' ``` The request should be checked with ```python if request.is_json: ```