Integrate Native SPIs

Native SPIs are a set of interfaces that bridge the interaction between the Super App and mini programs. When mini programs make requests via certain JSAPIs, IAPMiniProgram SDK calls the corresponding Native SPIs to direct the request to the super appSuper App. By integrating these SPIs, the Super App grants mini programs the following services/capabilities:

  • Obtaining user authorization
  • Accessing user information
  • Processing payments
  • Scanning QR codes and barcodes

This topic mainly explains the function of each Native SPI and guides the Super App to integrate these SPIs step by step.

Overview

Native SPI

Associated JSAPI

Description

OAuthService

my.getAuthCode

The Super App integrates this SPI to provide authorization codes for mini programs. The mechanism is based on OAuth 2.0 standards and enables mini programs to securely access the resources or capabilities for proper functioning.

For more information, refer to the following sections.

MemberService

my.getOpenUserInfo

The Super App integrates this SPI to provide basic user information for both mini programs and IAPMiniProgram SDK. This integration is important for the following use cases:

  • Enable mini programs to access non-sensitive user profile information.

Note: In this use case, the Super App must integrate the OAuthService SPI first.

  • Enable IAPMiniProgram SDK to access the user ID for the following features:
    • Mini-program performance tracking: This includes the analysis of metrics such as Daily User Visits, which are displayed on the Mini Program Platform console if the Super App has enabled the feature.
    • Whitelisting: This allows mini-program developers to choose specific users to test the mini program in your Super App during pilot testing.

For more information, refer to the following sections.

PaymentService

my.tradePay

The Super App integrates this SPI to enable mini programs to process payments. For more information, refer to the following sections.

CodeService

my.scan

The Super App integrates this SPI to enable mini programs to use your scanner to scan QR codes or barcodes. For more information, refer to the following sections.

Note: To ensure this SPI activates your scanner successfully, must implement code-scanning capabilities in your app.

Note:

  • Calling a JSAPI triggers to call its associated Native SPI. Errors occur when the SPI fails to call.

OAuthService

This section explains the workflow and integration process of the OAuthService interface, which requests the Super App to generate authorization codes for the mini program.

Workflow

Integrate Native SPIs

Procedures

Follow the procedure to integrate the OAuthService interface:

Step 1: Implement OAuthService

Create a class that implements the OAuthService interface. Within this class, sequentially implement the following methods: getAuthCode , showAuthPage, and getAuthorizedScopes .

For the complete code samples, see Samples (Java and Kotlin).

Implement the getAuthCodemethod

Call the getAuthCode method to request the Super App to generate authorization codes for the mini program, and handle the following outcomes of the OAuth authentication flow:

  • The user's consent is required before granting the mini program access to the requested scopes.
  • The OAuth process succeeds.
  • The OAuth process fails.

Implement the showAuthPage method

Implement the showAuthPage method to show the user authorization dialog and handle the following outcomes:

  • The user allows mini program to access the requested scopes.
  • The user declines or cancels the permission request.

Note: If the user allows mini program to access the requested scopes, the Super App needs to save the scopes to prevent the authorization dialog from reappearing when the same scopes are requested again. To save the scopes, the Super App can use the following caching logic, the cacheScopes method:

Java
copy
private void cacheScopes(String appId, String authClientId, Collection grantedScopes) {
    for (String scope: grantedScopes) {
        String key = appId + "_" + authClientId + "_" + scope;
        cache(key, true); //Use SharedPreferences or any persistence framework to store the key-value pair
    }
}
Kotlin
copy
private fun cacheScopes(appId: String, authClientId: String, grantedScopes: Collection<*>) {
    for (scope in grantedScopes) {
        val key = appId + "_" + authClientId + "_" + scope
        cache(key,true) //Use SharedPreferences or any persistence framework to store the key-value pair
    }
}

When caching the scopes, construct a unique key by combining appId (the mini-program ID), authClientId (the super app ID), and scope for identification, and set the value as a simple boolean true to indicate that the scopes are granted.

Implement the getAuthorizedScopes method

Implement the getAuthorizedScopes method to retrieve a list of the authorized scopes.

Step 2: Register OAuthService to SDK

Before the SDK initialization logic, call the registerServices API to register the OAuthService interface to IAPMiniProgram SDK.

Refer to the following sample code for the registration:

Java

copy
public class YourApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        try {
            Class[] services = new Class[]{
                    OAuthServiceImpl.class
            };
            WalletServiceManager.getInstance().registerServices (services);
        } catch (BaseService.NoServiceMetaInfoException | BaseService.ServiceRegisterException e) {
        }
        InitConfig initConfig = new InitConfig();
        IAPConnect.init(this, initConfig, new InitCallback() {
            @Override
            public void onSuccess() {
                //Initialization succeeds
            }
            @Override
            public void onFailure(String errorCode, String errorMessage) {
                //Initialization fails
            }
        });  
    }
}

Kotlin

copy
class YourApplication : Application() {
    override fun onCreate() {
        super.onCreate()
        try {
            val services = arrayOf(OAuthServiceImpl::class.java)
            WalletServiceManager.getInstance().registerServices(*services)
        } catch (e: NoServiceMetaInfoException) {
        } catch (e: ServiceRegisterException) {
        }
        val initConfig = InitConfig()
        IAPConnect.init(this, initConfig, object : InitCallback {
            override fun onSuccess() {
                 //Initialization succeeds
            }
            override fun onFailure(initErrorCode: InitErrorCode, s: String) {
                 //Initialization fails
            }
        })    
    }
}

MemberService

This section explains the workflow and integration process of the MemberService interface, which obtains the members' information for the mini program.

Workflow

The interaction workflow of the MemberService interface differs depending on the following use cases:

  • For requests by mini programs
  • For requests by IAPMiniProgram SDK

For requests by mini programs

Integrate Native SPIs

For requests by IAPMiniProgram SDK

Integrate Native SPIs

Procedures

Follow the procedure to integrate the MemberService interface:

Step 1: Implement MemberService

Create a class that implements the MemberService interface. Within this class, implement the getMemberInfo method to fetch the member information according to the specified strategy.

For the complete code samples, see Samples (Java and Kotlin).

Step 2: Register MemeberService to SDK

Before the SDK initialization logic, call the registerServices API to register the MemberService interface to IAPMiniProgram SDK.

Refer to the following sample code for the registration:

Java

copy
public class YourApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        try {
            Class[] services = new Class[]{
                    MemberServiceImpl.class
            };
            WalletServiceManager.getInstance().registerServices (services);
        } catch (BaseService.NoServiceMetaInfoException | BaseService.ServiceRegisterException e) {
        }
        InitConfig initConfig = new InitConfig();
        IAPConnect.init(this, initConfig, new InitCallback() {
            @Override
            public void onSuccess() {
                //Initialization succeeds
            }
            @Override
            public void onFailure(String errorCode, String errorMessage) {
                //Initialization fails
            }
        });  
    }
}

Kotlin

copy
class YourApplication : Application() {
    override fun onCreate() {
        super.onCreate()
        try {
            val services = arrayOf(MemberServiceImpl::class.java)
            WalletServiceManager.getInstance().registerServices(*services)
        } catch (e: NoServiceMetaInfoException) {
        } catch (e: ServiceRegisterException) {
        }
        val initConfig = InitConfig()
        IAPConnect.init(this, initConfig, object : InitCallback {
            override fun onSuccess() {
                 //Initialization succeeds
            }
            override fun onFailure(initErrorCode: InitErrorCode, s: String) {
                 //Initialization fails
            }
        })    
    }
}

PaymentService

This section explains the workflow and integration process of the PaymentService interface , which initiates the payment process and handle the payment result.

Workflow

Integrate Native SPIs

Procedures

Follow the procedure to integrate the PaymentService interface:

Step 1: Implement PaymentService

Create a class that implements the PaymentService interface. Within this class, implement the pay method to initiate the payment process and request for payment with the type of order, and handle the payment result.

For the complete code samples, see Samples (Java and Kotlin).

Step 2: Register PaymentService to SDK

Before the SDK initialization logic, call the registerServices API to register the PaymentService interface to IAPMiniProgram SDK.

Refer to the following sample code for the registration:

Java

copy
public class YourApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        try {
            Class[] services = new Class[]{
                    PaymentServiceImpl.class
            };
            WalletServiceManager.getInstance().registerServices (services);
        } catch (BaseService.NoServiceMetaInfoException | BaseService.ServiceRegisterException e) {
        }
        InitConfig initConfig = new InitConfig();
        IAPConnect.init(this, initConfig, new InitCallback() {
            @Override
            public void onSuccess() {
                //Initialization succeeds
            }
            @Override
            public void onFailure(String errorCode, String errorMessage) {
                //Initialization fails
            }
        });  
    }
}

Kotlin

copy
class YourApplication : Application() {
    override fun onCreate() {
        super.onCreate()
        try {
            val services = arrayOf(PaymentServiceImpl::class.java)
            WalletServiceManager.getInstance().registerServices(*services)
        } catch (e: NoServiceMetaInfoException) {
        } catch (e: ServiceRegisterException) {
        }
        val initConfig = InitConfig()
        IAPConnect.init(this, initConfig, object : InitCallback {
            override fun onSuccess() {
                 //Initialization succeeds
            }
            override fun onFailure(initErrorCode: InitErrorCode, s: String) {
                 //Initialization fails
            }
        })    
    }
}

CodeService

This section explains the workflow and integration process of the CodeService interface, which provides QR code or barcode.

Workflow

Integrate Native SPIs

Procedures

Follow the procedure to integrate the CodeService interface:

Step 1: Implement CodeService

Create a class that implements the CodeService interface. Within this class, implement the scan method to launch the QR code or barcode scanner and return the code.

For the complete code samples, see Samples (Java and Kotlin).

Step 2: Register CodeService to SDK

Before the SDK initialization logic, call the registerServices API to register the CodeService interface to IAPMiniProgram SDK.

Refer to the following sample code for the registration:

Java

copy
public class YourApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        try {
            Class[] services = new Class[]{
                    CodeServiceImpl.class
            };
            WalletServiceManager.getInstance().registerServices (services);
        } catch (BaseService.NoServiceMetaInfoException | BaseService.ServiceRegisterException e) {
        }
        InitConfig initConfig = new InitConfig();
        IAPConnect.init(this, initConfig, new InitCallback() {
            @Override
            public void onSuccess() {
                //Initialization succeeds
            }
            @Override
            public void onFailure(String errorCode, String errorMessage) {
                //Initialization fails
            }
        });  
    }
}

Kotlin

copy
class YourApplication : Application() {
    override fun onCreate() {
        super.onCreate()
        try {
            val services = arrayOf(CodeServiceImpl::class.java)
            WalletServiceManager.getInstance().registerServices(*services)
        } catch (e: NoServiceMetaInfoException) {
        } catch (e: ServiceRegisterException) {
        }
        val initConfig = InitConfig()
        IAPConnect.init(this, initConfig, object : InitCallback {
            override fun onSuccess() {
                 //Initialization succeeds
            }
            override fun onFailure(initErrorCode: InitErrorCode, s: String) {
                 //Initialization fails
            }
        })    
    }
}