অ্যান্ড্রয়েড অ্যাপ্লিকেশানগুলির মধ্যে ডিজিটাল শংসাপত্র যাচাইকরণ একটি ব্যবহারকারীর পরিচয় (যেমন একটি সরকারী আইডি), সেই ব্যবহারকারীর বৈশিষ্ট্যগুলি (যেমন ড্রাইভিং লাইসেন্স, একাডেমিক ডিগ্রি, বা বয়স বা ঠিকানার মতো বৈশিষ্ট্যগুলি) বা অন্যান্য পরিস্থিতিতে প্রমাণীকরণ এবং অনুমোদন করতে ব্যবহার করা যেতে পারে। যেখানে একটি সত্তার সত্যতা নিশ্চিত করার জন্য একটি শংসাপত্র জারি এবং যাচাই করা প্রয়োজন।
ডিজিটাল শংসাপত্র হল একটি সর্বজনীন W3C ইনকিউবেটর স্ট্যান্ডার্ড যা নির্দিষ্ট করে যে কীভাবে একটি ডিজিটাল ওয়ালেট থেকে ব্যবহারকারীর যাচাইযোগ্য ডিজিটাল শংসাপত্রগুলি অ্যাক্সেস করতে হয় এবং W3C ক্রেডেনশিয়াল ম্যানেজমেন্ট API এর সাথে ওয়েব ব্যবহারের ক্ষেত্রে প্রয়োগ করা হয়। অ্যান্ড্রয়েডে, ক্রেডেনশিয়াল ম্যানেজারের DigitalCredential
এপিআই ডিজিটাল শংসাপত্র যাচাই করার জন্য ব্যবহার করা হয়।
বাস্তবায়ন
আপনার Android প্রকল্পে ডিজিটাল শংসাপত্র যাচাই করতে, নিম্নলিখিতগুলি করুন:
- আপনার অ্যাপের বিল্ড স্ক্রিপ্টে নির্ভরতা যোগ করুন এবং একটি
CredentialManager
ক্লাস শুরু করুন। - একটি ডিজিটাল শংসাপত্রের অনুরোধ তৈরি করুন এবং একটি
DigitalCredentialOption
শুরু করতে এটি ব্যবহার করুন, তারপরGetCredentialRequest
তৈরি করুন। - একটি সফল
GetCredentialResponse
পেতে বা ঘটতে পারে এমন কোনও ব্যতিক্রম পরিচালনা করতে নির্মিত অনুরোধের সাথেgetCredential
ফ্লো চালু করুন। সফল পুনরুদ্ধার করার পরে, প্রতিক্রিয়া যাচাই করুন।
নির্ভরতা যোগ করুন এবং আরম্ভ করুন
আপনার Gradle বিল্ড স্ক্রিপ্টে নিম্নলিখিত নির্ভরতা যোগ করুন:
dependencies {
implementation("androidx.credentials:credentials:1.5.0-beta01")
implementation("androidx.credentials:credentials-play-services-auth:1.5.0-beta01")
}
এরপরে, CredentialManager
ক্লাসের একটি উদাহরণ শুরু করুন।
val credentialManager = CredentialManager.create(context)
একটি ডিজিটাল শংসাপত্রের অনুরোধ তৈরি করুন
একটি ডিজিটাল শংসাপত্রের অনুরোধ তৈরি করুন এবং একটি DigitalCredentialOption
শুরু করতে এটি ব্যবহার করুন।
// The request in the JSON format to conform with
// the JSON-ified Digital Credentials API request definition.
val requestJson = generateRequestFromServer()
val digitalCredentialOption =
GetDigitalCredentialOption(requestJson = requestJson)
// Use the option from the previous step to build the `GetCredentialRequest`.
val getCredRequest = GetCredentialRequest(
listOf(digitalCredentialOption)
)
শংসাপত্র পান
নির্মিত অনুরোধের সাথে getCredential
ফ্লো চালু করুন। অনুরোধ ব্যর্থ হলে আপনি একটি সফল GetCredentialResponse
, অথবা একটি GetCredentialException
পাবেন৷
getCredential
ফ্লো ব্যবহারকারীর উপলব্ধ শংসাপত্রের বিকল্পগুলি উপস্থাপন করতে এবং তাদের নির্বাচন সংগ্রহ করতে Android সিস্টেম ডায়ালগগুলিকে ট্রিগার করে৷ এরপরে, ওয়ালেট অ্যাপ যেটিতে নির্বাচিত শংসাপত্রের বিকল্প রয়েছে সেটি সম্মতি সংগ্রহের জন্য UI প্রদর্শন করবে এবং একটি ডিজিটাল শংসাপত্র প্রতিক্রিয়া তৈরি করতে প্রয়োজনীয় ক্রিয়া সম্পাদন করবে।
coroutineScope.launch {
try {
val result = credentialManager.getCredential(
context = activityContext,
request = getCredRequest
)
verifyResult(result)
} catch (e : GetCredentialException) {
handleFailure(e)
}
}
// Handle the successfully returned credential.
fun verifyResult(result: GetCredentialResponse) {
val credential = result.credential
when (credential) {
is DigitalCredential -> {
val responseJson = credential.credentialJson
validateResponseOnServer(responseJson)
}
else -> {
// Catch any unrecognized credential type here.
Log.e(TAG, "Unexpected type of credential ${credential.type}")
}
}
}
// Handle failure.
fun handleFailure(e: GetCredentialException) {
when (e) {
is GetCredentialCancellationException -> {
// The user intentionally canceled the operation and chose not
// to share the credential.
}
is GetCredentialInterruptedException -> {
// Retry-able error. Consider retrying the call.
}
is NoCredentialException -> {
// No credential was available.
}
is CreateCredentialUnknownException -> {
// An unknown, usually unexpected, error has occurred. Check the
// message error for any additional debugging information.
}
is CreateCredentialCustomException -> {
// You have encountered a custom error thrown by the wallet.
// If you made the API call with a request object that's a
// subclass of CreateCustomCredentialRequest using a 3rd-party SDK,
// then you should check for any custom exception type constants
// within that SDK to match with e.type. Otherwise, drop or log the
// exception.
}
else -> Log.w(TAG, "Unexpected exception type ${e::class.java}")
}
}