custom application 에서
KakaoSdk.init(this, 네이티브앱키) 를 해주고
LoginFragment 에서
AuthCodeClient.rx.authorize(requireContext())
.observeOn(Schedulers.io())
.flatMap { authCode -> AuthApiClient.rx.issueAccessToken(authCode) }
.subscribe({}) { error ->
// TODO 에러 처리
Timber.e(“error = $error”)
}.addTo(fragmentDisposables)
를 했더니 error 부분에 이렇게 나옵니다. 확인 부탁드립니다.
error = OAuthError(statusCode=401, reason=Misconfigured, response=AuthErrorResponse(error=misconfigured, errorDescription=invalid android_key_hash or ios_bundle_id or web_site_url))