Constants |
object Constants |
issueAccessToken |
그룹에 속해 있는 다른 앱의 refreshToken으로 사용자를 식별하여 신규 토큰을 발급. fun RxAuthApiClient.issueAccessToken(groupRefreshToken: String): Single<OAuthToken> fun AuthApiClient.issueAccessToken(groupRefreshToken: String, callback: (token: OAuthToken?, error: Throwable?) -> Unit): Unit |
loginWithKakaoAccount |
기본 브라우저의 카카오계정 쿠키 유무와 관계 없이 카카오계정 로그인 페이지를 먼저 호출하여 사용자를 인증한 후 토큰을 발급 받습니다. fun RxLoginClient.loginWithKakaoAccount(context: Context, accountParameters: Map<String, String>): Single<OAuthToken> fun LoginClient.loginWithKakaoAccount(context: Context, accountParameters: Map<String, String>, callback: (token: OAuthToken?, error: Throwable?) -> Unit): Unit |