Github OAuth Client Library - Android
The Github_OAuth library helps to easily add a Github's OAuth implementation flow to your Android application.
It will open a new Dialog Fragment with webview and user token will be returned on callback.
Find more about GitHub's OAuth implementation
Let’s go through a sample application that authenticate using Github. complete source code of this library and sample application is available on Github.
Setup
Using Gradle
The Github-OAuth library is pushed to jcenter, so you need to add the following dependency to your app's build.gradle.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
implementation 'com.github.rahul:github-oauth:1.0' | |
implementation 'com.squareup.okhttp3:okhttp:3.8.0' | |
} |
As a module
If you can't include it as gradle dependency, you can also download this GitHub repo and copy the library folder to your project.
Usage
Obtaining GithubAuthenticator instance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
val githubAuthenticatorBuilder = GithubAuthenticator.builder(this) | |
.clientId(GITHUB_ID) | |
.clientSecret(GITHUB_SECRET) | |
.onSuccess(object : SuccessCallback { | |
override fun onSuccess(result: String) { | |
runOnUiThread { | |
Toast.makeText(this@MainActivity, result, | |
Toast.LENGTH_LONG).show() | |
} | |
} | |
}) | |
.onError(object : ErrorCallback { | |
override fun onError(error: Exception) { | |
runOnUiThread { | |
Toast.makeText(this@MainActivity, error.message, | |
Toast.LENGTH_LONG).show() | |
} | |
} | |
}) | |
val githubAuthenticator = githubAuthenticatorBuilder.build() |
Obtaining an access token via the GithubAuthenticator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
githubAuthenticator.authenticate() |
Enable logs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
githubAuthenticatorBuilder.debug(true) |
Scope can also be defined (optional)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
githubAuthenticatorBuilder.scopeList(arrayListOf("scope1", "scope2")) |
Comments
Post a Comment