이 에러는 (String)을 통해 형변환을 해준 것을 String.valueOf를 이용하여 형변환을 해주면 된다.
내 코드의 경우
.profileImage((String) attributes.get("profile_image"))
을
.profileImage(String.valueOf(attributes.get("profile_image")))
로 변경하여 해결하였다.
다음의 블로그를 참고하였다.
https://javamin.tistory.com/369