Developer/Django
장고 Integrity Error, NOT NULL constraint failed
깃허브 로그인 연동을 구현하던 중에 에러가 발생했다. NOT NULL constraint failed: users_user.username 오류 내용은 user를 username 없이 생성하려고 해서 문제가 생기는 것이다. 오류가 발생한 부분은 profile_request = requests.get( "https://api.github.com/user", headers={ "Authorization": f"token {access_token}", "Accept": "application/json", }, ) profile_json = profile_request.json() username = profile_json.get("login", None) if username is not None: name ..