openUrl

The openUrl API is called by the super app to open a mini program with its scheme URL.

Method signature

copy
openUrl(params:GRVStartAppParams, callback:GriverContainerAPICallBack?)

Parameters

Name

Type

Description

Required

params

GRVStartAppParams class

This parameter is used to pass the startup parameters to the IAPMini Program SDK to customize the behavior of a mini program during startup. For details, see the GRVStartAppParams class.

Yes

callback

GriverContainerAPICallBack

The callback that is used to listen to mini program launch failures.

No

Structures

GRVStartAppParams class

This class contains the startup parameters passed to the IAPMiniProgram SDK to customize the behavior of the applet when it is started.

createBuilderForUrl

Create a GRVStartupParams.Builder object to open the mini program by the scheme URL (specified by the url parameter).

Method signature
copy
createBuilderForUrl(context: Context, url: String): GRVStartupParams.Builder
Parameters

Parameters

Data Type

Requeired

Description

context

Context

Yes

Interface to global information about an application environment.

url

String

Yes

The scheme URL of the mini program. The URL uses the HTTP or HTTPs protocols and include the _ariver_appid, _ariver_path, and _ariver_version query string parameters. You can get the URL from the Mini Program Platform console.

Return Value

GRVStartupParams.Builder. The class constructs a GRVStartupParams object.

GriverContainerAPICallBack

The callback that is used to listen to mini program launch failures.

Method signature

copy
error(errorCode:Int, errorMessage:String)

Error codes

Error code

Error message

Further action

90002

GRV_CONTAINER_API_ERROR_PARAM

The parameter is wrong. Refer to the Parameters table and check if all parameter types are correct and if all required parameters are specified.

90003

GRV_CONTAINER_NOT_INITIALIZED

IAPMiniProgram SDK is not initialized. Need to initialize the SDK.

10000

GRV_CONTAINER_NOT_UNKNOWN

Check whether the scheme URL format is correct.

If the problem persists, please contact overseas_support@service.alibaba.com for assistance.

Samples

copy
val startupParams = GRVStartupParams.createBuilderForUrl(context, url)
    .build()
Griver.openUrl(startupParams) { errorCode, errorMessage ->
    Log.d(
        "TAG",
        "errorCode:$errorCode,errorMessage:$errorMessage"
    )
}