Node.js

Create the Mobile UI

Building the Main Activity

  • ComponentActivity: The base class for activities that use Jetpack Compose.
  • setContent: Sets the UI content using Compose.
  • MaterialTheme and Surface: Wrap the UI in a material design surface for consistency.

Composable Function for Verification Screen

  • remember: Allows us to save state across recompositions.
  • coroutineScope: Launches asynchronous operations without blocking the UI.
  • OutlinedTextField: Input field for entering the phone number.

Loading Indicator and Button

  • CircularProgressIndicator: Shows a loading spinner while waiting for the response.
  • Button: Starts the verification process.
  • Text: Displays status messages to the user.

Getting Started with Silent Authentication

Silent Authentication takes quite a bit to understand. This tutorial shows you how to build an integration from scratch with Nodejs and Kotlin

以下の言語で利用可能:
Node.js
手順
1
Introduction
2
Before you start
3
Initialize the Project
4
Create a Simple Express Server
5
Setting up Vonage credentials
6
Add the Vonage Verify API
7
Testing the Backend
8
Create New Android Project
9
Set up app Android dependencies
10
Set up import and constants
11
Create Mobile UI
12
Networking to Backend
13
Testing Full Flow