class RxAuthCodeClient
OAuth 2.0 Spec 의 인증 코드를 발급받기 위해 사용되는 클라이언트. (for ReactiveX)
<init> |
OAuth 2.0 Spec 의 인증 코드를 발급받기 위해 사용되는 클라이언트. (for ReactiveX) RxAuthCodeClient(authApiClient: RxAuthApiClient = AuthApiClient.rx, intentResolveClient: IntentResolveClient = IntentResolveClient.instance, applicationInfo: ApplicationInfo = KakaoSdk.applicationContextInfo, contextInfo: ContextInfo = KakaoSdk.applicationContextInfo) |
authorizeWithKakaoAccount |
카카오계정으로 로그인. 기본 웹 브라우저(CustomTabs)에 있는 카카오계정 cookie 로 인증하여 인증 코드 발급. fun authorizeWithKakaoAccount(context: Context, channelPublicIds: List<String>? = null, serviceTerms: List<String>? = null): Single<String> |
authorizeWithKakaoTalk |
카카오톡으로 로그인. 카카오톡에 연결된 카카오계정으로 사용자를 인증하고 인증 코드 발급. fun authorizeWithKakaoTalk(context: Context, requestCode: Int = AuthCodeClient.DEFAULT_REQUEST_CODE, channelPublicIds: List<String>? = null, serviceTerms: List<String>? = null): Single<String> |
authorizeWithNewScopes |
추가 항목 동의 받기. 사용자가 아직 동의하지 않은 개인정보 및 접근권한 동의 항목에 대하여 동의를 요청하는 동의 화면을 출력하고, 사용자 동의 시 인증 코드 발급. fun authorizeWithNewScopes(context: Context, scopes: List<String>, channelPublicIds: List<String>? = null, serviceTerms: List<String>? = null): Single<String> |
instance |
val instance: RxAuthCodeClient |