5.2.0-300 • Published 3 years ago

@hmscore/hms-js-iap v5.2.0-300

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
3 years ago

JSB IAP

JSSDK enables communication between HUAWEI In-App Purchases and both React Native, Cordova and Ionic platforms. This plugin exposes capabilities provided by HUAWEI In-App Purchases.

Contents

1. Introduction

2. Installation Guide

Creating a Project in AppGallery Connect

Creating an app in AppGallery Connect is required in order to communicate with the Huawei services. To create an app, perform the following steps:

Step 1. Sign in to AppGallery Connect and select My projects.

Step 2. Select your project from the project list or create a new one by clicking the Add Project button.

Step 3. Go to Project Setting > General information, and click Add app. If an app exists in the project and you need to add a new one, expand the app selection area on the top of the page and click Add app.

Step 4. On the Add app page, enter the app information, and click OK.

  • A signing certificate fingerprint is used to verify the authenticity of an app when it attempts to access an HMS Core service through the HMS Core SDK. Before using HMS Core (APK), you must locally generate a signing certificate fingerprint and configure it in AppGallery Connect. Ensure that the JDK has been installed on your computer.

Configuring the Signing Certificate Fingerprint

Step 1. Go to Project Setting > General information. In the App information field, click the icon next to SHA-256 certificate fingerprint, and enter the obtained SHA256 certificate fingerprint.

Step 2. After completing the configuration, click check mark.

React-Native Integration

Step 1: Sign in to AppGallery Connect and select My projects.

Step 2: Find your app project, and click the desired app name.

Step 3: Go to Project Setting > General information. In the App information section, click agconnect-service.json to download the configuration file.

Step 4: Create a React Native project if you do not have one.

Step 5: Copy the agconnect-service.json file to the android/app directory of your React Native project.

Step 6: Copy the signature file that generated in Generating a Signing Certificate section, to the android/app directory of your React Native project.

Step 7: Check whether the agconnect-services.json file and signature file are successfully added to the android/app directory of the React Native project.

Step 8: Open the AndroidManifest.xml file, add the following lines, and replace the value <app_id> with the value you found in the agconnect-services.json file.

<application>
...
     <meta-data
            android:name="com.huawei.hms.client.appid"
            android:value="appid=<app_id>" />
</application>

Step 9: Open the build.gradle file in the android directory of your React Native project.

  • Go to buildscript then configure the Maven repository address and agconnect plugin for the HMS SDK.
buildscript {    
  repositories {        
    google()        
    jcenter()        
    maven { url 'https://developer.huawei.com/repo/' }   
  }    

  dependencies {        
    /*          
      * <Other dependencies>        
      */   
    classpath 'com.huawei.agconnect:agcp:1.4.2.301'    
  }
}
  • Go to allprojects then configure the Maven repository address for the HMS SDK.
allprojects {
  repositories {
    /*          
      * <Other repositories>        
      */  
    maven { url 'https://developer.huawei.com/repo/' }
  }
}

Step 10: Open the build.gradle file in the android/app directory of your React Native project.

  • Package name must match with the package_name entry in agconnect-services.json file.
defaultConfig {
  applicationId "<package_name>"
  minSdkVersion 19
  /*
   * <Other configurations>
   */
}
android {
  /*
   * <Other configurations>
   */

  signingConfigs {
    config {
      storeFile file('<keystore_file>.jks')
      storePassword '<keystore_password>'
      keyAlias '<key_alias>'
      keyPassword '<key_password>'
    }
  }

  buildTypes {
    debug {
      signingConfig signingConfigs.config
    }
    release {
      signingConfig signingConfigs.config
      minifyEnabled enableProguardInReleaseBuilds
      ...
    }
  }
}

Step 11: Open the build.gradle file in the android/app directory of your React Native project.

  • Configure build dependencies.
buildscript {
  ...
  dependencies {
    /*
    * <Other dependencies>
    */
    implementation ('com.huawei.hms:rn-adapter:5.2.0.300'){
        exclude group: 'com.facebook.react'
    } 
    ...    
  }
}

Step 12: Import the following class to the MainApplication.java file of your project.

import com.huawei.hms.jsb.adapter.rn.RnJSBReactPackage;

Then, add the RnJSBReactPackage() to your getPackages method. In the end, your file will be similar to the following:

@Override
protected List<ReactPackage> getPackages() {
    List<ReactPackage> packages = new PackageList(this).getPackages();
    packages.add(new RnJSBReactPackage()); // <-- Add this line 
    return packages;
}
...

Step 13: Download js-sdk using command below.

npm i @hmscore/hms-js-iap

Step 14: Import HMSIAP in App.js as following line.

import HMSIAP from "@hmscore/hms-js-iap";

Step 15: Call HMSIAP's init method to initialize.

import { NativeModules, DeviceEventEmitter } from "react-native";
...

HMSIAP.init(NativeModules, DeviceEventEmitter);

Step 16: Run your project.

  • Run the following command to the project directory.
react-native run-android  

Cordova Integration

Step 1: Install Cordova CLI if haven't done before.

npm install -g cordova

Step 2: Create a new Cordova project or use the existing one.

  • To create new Cordova project, you can use cordova create path [id [name [config]]] [options] command. For more details please follow CLI Reference - Apache Cordova.

Step 3: Update the widget id property which is specified in the config.xml file. It must be same with package_name value of the agconnect-services.json file.

Step 4: Add the Android platform to the project if haven't done before.

cordova platform add android

Step 5: Download plugin using command below.

cordova plugin add @hmscore/hms-js-iap

Step 6: Copy agconnect-services.json file to <project_root>/platforms/android/app directory.

Step 7: Add keystore(.jks) and build.json files to your project's root directory.

  • You can refer to 3rd and 4th steps of Generating a Signing Certificate Codelab tutorial page for generating keystore file.

  • Fill build.json file according to your keystore information. For example:

    {
        "android": {
            "debug": {
                "keystore": "<keystore_file>.jks",
                "storePassword": "<keystore_password>",
                "alias": "<key_alias>",
                "password": "<key_password>"
            },
            "release": {
                "keystore": "<keystore_file>.jks",
                "storePassword": "<keystore_password>",
                "alias": "<key_alias>",
                "password": "<key_password>"
            }
        }
    }

Step 8: Import the following class to the MainActivity.java file of your project. You can find this file in platforms/android/app/src/main/java/<your_package_name> directory.

import com.huawei.hms.jsb.adapter.cordova.CordovaJSBInit;

Step 9: In the same file, add CordovaJSBInit.initJSBFramework(this) line after the super.onCreate(savedInstanceState) method call.

  • In the end, your file will be similar to the following:

    ...
    
    import com.huawei.hms.jsb.adapter.cordova.CordovaJSBInit;
    
    public class MainActivity extends CordovaActivity
    {
        @Override
        public void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            CordovaJSBInit.initJSBFramework(this);
    
            ...
        }
        ...
    }

Step 10: Open the AndroidManifest.xml file, add the following lines, and replace the value <app_id> with the app_id value that can be found in the agconnect-services.json file.

<application>
...
     <meta-data
            android:name="com.huawei.hms.client.appid"
            android:value="appid=<app_id>" />
</application>

Step 11: Run the app

cordova run android

Ionic Integration

Install Ionic CLI and other required tools if haven't done before.

npm install -g @ionic/cli cordova-res native-run

Ionic with Cordova Runtime

Step 1: Enable the Cordova integration if haven't done before.

ionic integrations enable cordova

Step 2: Update the widget id property which is specified in the config.xml file. It must be same with package_name value of the agconnect-services.json file.

Step 3: Add the Android platform to the project if haven't done before.

ionic cordova platform add android

Step 4: Install HMS IAP Plugin to the project.

ionic cordova plugin add @hmscore/hms-js-iap

Step 5: Copy agconnect-services.json file to <project_root>/platforms/android/app directory.

Step 6: Add keystore(.jks) and build.json files to your project's root directory.

  • You can refer to 3rd and 4th steps of Generating a Signing Certificate Codelab tutorial page for generating keystore file.

  • Fill build.json file according to your keystore information. For example:

    {
        "android": {
            "debug": {
                "keystore": "<keystore_file>.jks",
                "storePassword": "<keystore_password>",
                "alias": "<key_alias>",
                "password": "<key_password>"
            },
            "release": {
                "keystore": "<keystore_file>.jks",
                "storePassword": "<keystore_password>",
                "alias": "<key_alias>",
                "password": "<key_password>"
            }
        }
    }

Step 7: Import the following class to the MainActivity.java file of your project. You can find this file in platforms/android/app/src/main/java/<your_package_name> directory.

import com.huawei.hms.jsb.adapter.cordova.CordovaJSBInit;

Step 8: In the same file, add CordovaJSBInit.initJSBFramework(this) line after the super.onCreate(savedInstanceState) method call.

  • In the end, your file will be similar to the following:

    ...
    
    import com.huawei.hms.jsb.adapter.cordova.CordovaJSBInit;
    
    public class MainActivity extends CordovaActivity
    {
        @Override
        public void onCreate(Bundle savedInstanceState)
        {
            super.onCreate(savedInstanceState);
            CordovaJSBInit.initJSBFramework(this);
    
            ...
        }
        ...
    }

Step 9: Open the AndroidManifest.xml file, add the following lines, and replace the value <app_id> with the app_id value that can be found in the agconnect-services.json file.

<application>
...
     <meta-data
            android:name="com.huawei.hms.client.appid"
            android:value="appid=<app_id>" />
</application>

Step 10: Run the application.

ionic cordova run android --device

Ionic with Capacitor Runtime

Step 1: Enable the Capacitor integration if haven't done before.

ionic integrations enable capacitor

Step 2: Initialize Capacitor if haven't done before.

npx cap init [appName] [appId]

Step 3: Update the appId property which is specified in the capacitor.config.json file according to your project. It must be same with package_name value of the agconnect-services.json file.

Step 4: Install HMS IAP plugin to the project.

npm install @hmscore/hms-js-iap

Step 5: Build Ionic app to generate resource files.

ionic build

Step 6: Add the Android platform to the project.

npx cap add android

Step 7: Copy keystore(.jks) and agconnect-services.json files to <project_root>/android/app directory.

Step 8: Open the build.gradle file in the <project_root>/android/app directory.

  • Add signingConfigs entry to the android section and modify it according to your keystore.

  • Enable signingConfig configuration for debug and release flavors.

...

android {

    ...

    // Modify signingConfigs according to your keystore
    signingConfigs {
        config {
            storeFile file('<keystore_file>.jks')
            storePassword '<keystore_password>'
            keyAlias '<key_alias>'
            keyPassword '<key_password>'
        }
    }
    buildTypes {
        debug {
            signingConfig signingConfigs.config // Enable signingConfig for debug flavor
        }
        release {
            signingConfig signingConfigs.config // Enable signingConfig for release flavor
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

...
  • Add apply plugin:'com.huawei.agconnect to top of your build gradle file in the <project_root>/android/app directory.

Step 9: Open the build.gradle file in the <project_root>/android directory. Add Huawei's maven repositories and agconnect classpath to the file.

buildscript {
    repositories {
        /*
            <Other repositories>
        */
        maven { url 'https://developer.huawei.com/repo/' }
    }
    dependencies {
        /*
            <Other dependencies>
        */
        classpath 'com.huawei.agconnect:agcp:1.4.2.301'
    }
}

/*
    <Other build.gradle entries>
*/

allprojects {
    repositories {
        /*
            <Other repositories>
        */
        maven { url 'https://developer.huawei.com/repo/' }
    }
}

Step 10: Import the following class to the MainActivity.java file of your project. You can find this file in android/app/src/main/java/<your_package_name> directory.

import com.huawei.hms.js.iap.HMSIAP;

Step 11: In the same file, add add(HMSIAP.class); line to the ArrayList.

  • In the end, your file will be similar to the following:

    ...
    import com.huawei.hms.js.iap.HMSIAP;
    public class MainActivity extends BridgeActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
    
      // Initializes the Bridge
      this.init(savedInstanceState, new ArrayList<Class<? extends Plugin>>() {{
          add(HMSIAP.class);
      }});
    }
    ...

Step 12: Open the AndroidManifest.xml file, add the following lines, and replace the value <app_id> with the app_id value that can be found in the agconnect-services.json file.

<application>
...
     <meta-data
            android:name="com.huawei.hms.client.appid"
            android:value="appid=<app_id>" />
</application>

Step 13: Updates dependencies, and copy any web assets to your project.

npx cap sync

Step 14: Open the project in Android Studio and run it.

npx cap open android

3. API Reference

HMSIAP

Public Method Summary

MethodReturn TypeDescription
isEnvReady()Promise<Result\>Checks whether the currently signed-in HUAWEI ID is located in a country or region where HUAWEI IAP is available.
isSandboxActivated()Promise<Result\>Checks whether the signed-in HUAWEI ID and the app APK version meet the requirements of the sandbox testing.
obtainOwnedPurchases(ownedPurchasesReq)Promise<Result\>Queries information about all purchased products, including consumables, non-consumables, and subscriptions.
obtainProductInfo(productInfoReq)Promise<Result\>Obtains product details configured in AppGallery Connect.
createPurchaseIntent(purchaseIntentReq)Promise<Result\>Creates orders for products managed by the PMS, including consumables, non-consumables, and subscriptions.
consumeOwnedPurchase(consumeOwnedPurchaseReq)Promise<Result\>Consumes a consumable after it is delivered to a user who has completed payment.
obtainOwnedPurchaseRecord(ownedPurchasesReq)Promise<Result\>Obtains the historical consumption information about a consumable or all subscription receipts of a subscription.
startIapActivity(startIapActivityReq)Promise<Result\>Displays HUAWEI IAP-related screens, including the subscription editing screen and subscription management screen.

3.1.2 Public Methods

HMSIAP.isEnvReady()

Checks whether the currently signed-in HUAWEI ID is located in a country or region where HUAWEI IAP is available.

Return TypeDescription
Promise<Result\>IsEnvReadyResult object which represents environment check results.

Call Example

HMSIAP.isEnvReady()
    .then((res) => {
        console.log(res.data)
    })
    .catch((err) => {
        console.log(err)
    });
HMSIAP.isSandboxActivated()

Checks whether the signed-in HUAWEI ID and the app APK version meet the requirements of the sandbox testing.

Return TypeDescription
Promise<Result\>IsSandboxActivatedResult object which represents sandbox check results.

Call Example

HMSIAP.isSandboxActivated()
    .then((res) => {
        console.log(res.data)
    })
    .catch((err) => {
        console.log(err)
    });

Example Response

{
    "errMsg": "Sandbox is activated",
    "isSandboxApk": true,
    "isSandboxUser": true,
    "returnCode": 0,
    "versionFrMarket": "0",
    "versionInApk": "1"
}
HMSIAP.obtainOwnedPurchases(ownedPurchasesReq)

Queries information about all purchased in-app products, including consumables, non-consumables, and auto-renewable subscriptions.

ParameterTypeDescription
ownedPurchasesReqOwnedPurchasesReqRequest object for the obtainOwnedPurchases API.
Return TypeDescription
Promise<Result\>OwnedPurchasesResult object which represents purchased product information.

Call Example

const ownedPurchasesReq = {
    priceType: HMSIAP.PriceType.IN_APP_CONSUMABLE
}

HMSIAP.obtainOwnedPurchases(ownedPurchasesReq)
    .then((res) => {
        console.log(res.data)
    })
    .catch((err) => {
        console.log(err)
    });

Example Response

{
    "continuationToken": "",
    "errMsg": "success",
    "inAppPurchaseDataList": [
        {
            "autoRenewing": false,
            "orderId": "202102211638216856838c6c...",
            "packageName": "com.huawei...",
            "applicationId": 000,
            "kind": 0,
            "productId": "5.0.2.300.1",
            "productName": "Consumable - 5.0.2.300",
            "purchaseTime": 000,
            "purchaseTimeMillis": 000,
            "purchaseState": 0,
            "developerPayload": "testPurchase",
            "purchaseToken": "00000177c574e263d0bdfc9356...",
            "consumptionState": 0,
            "confirmed": 0,
            "purchaseType": 0,
            "currency": "TRY",
            "price": 100,
            "country": "TR",
            "payOrderId": "sandbox2021022117382...",
            "payType": "34",
            "sdkChannel": "1"
        },
        {
            "autoRenewing": false,
            "orderId": "202102211614306525163a95...",
            "packageName": "com.huawei...",
            "applicationId": 000,
            "kind": 0,
            "productId": "5.0.2.300.1.2",
            "productName": "Second Consumable",
            "purchaseTime": 000,
            "purchaseTimeMillis": 000,
            "purchaseState": 0,
            "developerPayload": "testPurchase",
            "purchaseToken": "00000177c55fe39add10fcb...",
            "consumptionState": 0,
            "confirmed": 0,
            "purchaseType": 0,
            "currency": "TRY",
            "price": 200,
            "country": "TR",
            "payOrderId": "sandbox202102211715...",
            "payType": "34",
            "sdkChannel": "1"
        }
    ],
    "inAppSignatureList": [
        "KKbLc6x1Q4+mp7DnlAxiE7Zmj...",
        "YcMXNjNlwOmcctzPgmueRT+ZP..."
    ],
    "itemList": [
        "5.0.2.300.1",
        "5.0.2.300.1.2"
    ],
    "returnCode": 0
}
HMSIAP.obtainProductInfo(productInfoReq)

Obtains in-app product details configured in AppGallery Connect.

ParameterTypeDescription
productInfoReqProductInfoReqRequest object for the obtainProductInfo API.
Return TypeDescription
Promise<Result\>ProductInfoResult object which represents product details.

Call Example

const productInfoReq = {
    skuIds: ['5.0.2.300.3', '5.0.2.300.3.2'],
    priceType: HMSIAP.PriceType.IN_APP_SUBSCRIPTION
}

HMSIAP.obtainProductInfo(productInfoReq)
    .then((res) => {
        console.log(res.data)
    })
    .catch((err) => {
        console.log(err)
    });

Example Response

{
    "errMsg": "success",
    "returnCode": 0,
    "skuList": [
        {
            "currency": "TRY",
            "microsPrice": 000,
            "originalLocalPrice": "",
            "originalMicroPrice": 0,
            "price": "TRY 1.00",
            "priceType": 2,
            "productDesc": "subs test product",
            "productId": "5.0.2.300.3",
            "productName": "Subs - 5.0.2.300",
            "status": 0,
            "subsGroupId": "5EFB723679D3427494B...",
            "subsGroupTitle": "",
            "subsIntroductoryPeriodCycles": 0,
            "subsIntroductoryPriceMicros": 0,
            "subsProductLevel": 1,
            "subscriptionPeriod": "P1W"
        },
        {
            "currency": "TRY",
            "microsPrice": 000,
            "originalLocalPrice": "",
            "originalMicroPrice": 0,
            "price": "TRY 1.00",
            "priceType": 2,
            "productDesc": "test subs",
            "productId": "5.0.2.300.3.2",
            "productName": "Subs 2 - 5.0.2.300",
            "status": 0,
            "subsGroupId": "5EFB723679D342749...",
            "subsGroupTitle": "",
            "subsIntroductoryPeriodCycles": 0,
            "subsIntroductoryPriceMicros": 0,
            "subsProductLevel": 1,
            "subscriptionPeriod": "P6M"
        }
    ]
}
HMSIAP.createPurchaseIntent(purchaseIntentReq)

Creates orders for PMS products, including consumables, non-consumables, and subscriptions.

ParameterTypeDescription
purchaseIntentReqPurchaseIntentReqRequest object for the createPurchaseIntent API.
Return TypeDescription
Promise<Result\>PurchaseResultInfo which represents purchase intent results.

Call Example

const purchaseIntentReq = {
    productId: "subscription4",
    priceType: HMSIAP.PriceType.IN_APP_SUBSCRIPTION,
    developerPayload: "testPurchase",
}

HMSIAP.createPurchaseIntent(purchaseIntentReq)
    .then((res) => {
        console.log(res.data)
    })
    .catch((err) => {
        console.log(err)
    });

Example Response

{
    "errMsg": "success",
    "retCode": 0
}
HMSIAP.consumeOwnedPurchase(consumeOwnedPurchaseReq)

Consumes a consumable after it is delivered to a user who has completed payment.

ParameterTypeDescription
consumeOwnedPurchaseReqConsumeOwnedPurchaseReqRequest object for the consumeOwnedPurchase API.
Return TypeDescription
Promise<Result\>ConsumeOwnedPurchaseResult which represents consume details.

Call Example

const consumeOwnedPurchaseReq = {
    developerChallenge: "developerChallenge",
    purchaseToken: "000001778c016d06d5f3907d13a5f5544d8f8a1114...."
}

HMSIAP.consumeOwnedPurchase(consumeOwnedPurchaseReq)
    .then((res) => {
        console.log(res.data)
    })
    .catch((err) => {
        console.log(err)
    });

Example Response

{
    "consumedPurchaseData": "{\"autoRenewing\":false,\"orderId\":\"202102211614306525163a9...\",\"packageName\":\"com.huawei...\",\"applicationId\":10253...,\"kind\":0,\"productId\":\"5.0.2.300.1.2\",\"productName\":\"Second Consumable\",\"purchaseTime\":161392413...,\"purchaseTimeMillis\":000,\"purchaseState\":0,\"developerPayload\":\"testPurchase\",\"purchaseToken\":\"00000177c55fe39add10fcbfedab93...\",\"developerChallenge\":\"developerChallenge\",\"responseCode\":\"0\",\"consumptionState\":1,\"confirmed\":1,\"purchaseType\":0,\"currency\":\"TRY\",\"price\":200,\"country\":\"TR\",\"payOrderId\":\"sandbox2021022117153...\",\"payType\":\"34\",\"sdkChannel\":\"1\"}",
    "dataSignature": "hjYGHuFLL+pDe58cuKYkzs/4n0M0dVde0lrau0ZvqxNCd...",
    "errMsg": "success",
    "returnCode": 0
}
HMSIAP.obtainOwnedPurchaseRecord(ownedPurchasesReq)

Obtains the historical consumption information about a consumable or all subscription receipts of a subscription.

ParameterTypeDescription
ownedPurchasesReqOwnedPurchasesReqRequest object for the obtainOwnedPurchaseRecord API.
Return TypeDescription
Promise<Result\>OwnedPurchasesResult which represents historical consumption details.

Call Example

const ownedPurchasesReq = {
    priceType: HMSIAP.PriceType.IN_APP_CONSUMABLE
}

HMSIAP.obtainOwnedPurchaseRecord(ownedPurchasesReq)
    .then((res) => {
        console.log(res.data)
    })
    .catch((err) => {
        console.log(err)
    });

Example Response

{
    "continuationToken": "",
    "errMsg": "success",
    "inAppPurchaseDataList": [
        {
            "autoRenewing": true,
            "subIsvalid": false,
            "orderId": "1614062541500...",
            "lastOrderId": "1613910602138...",
            "packageName": "com.huawei...",
            "applicationId": 000,
            "productId": "subscription4",
            "kind": 2,
            "productName": "Auto-Renewable 4",
            "productGroup": "22F57CD1C8424200A66FD29720844920",
            "purchaseTime": 000,
            "oriPurchaseTime": 000,
            "purchaseState": 0,
            "developerPayload": "testPurchase",
            "purchaseToken": "000001778a43bcbbb7554bf0a8784bda...",
            "purchaseType": 0,
            "currency": "TRY",
            "price": 200,
            "country": "TR",
            "subscriptionId": "1612932431035...",
            "quantity": 1,
            "daysLasted": 15,
            "numOfPeriods": 16,
            "numOfDiscount": 0,
            "expirationDate": 000,
            "retryFlag": 1,
            "introductoryFlag": 0,
            "trialFlag": 0,
            "renewStatus": 1,
            "renewPrice": 200,
            "cancelledSubKeepDays": 30,
            "payOrderId": "SandBox_1614062541500...",
            "payType": "0",
            "confirmed": 1
        },
        {
            "autoRenewing": true,
            "subIsvalid": false,
            "orderId": "1613933434282...",
            "lastOrderId": "1613920421990...",
            "packageName": "com.huawei...",
            "applicationId": 000,
            "productId": "5.0.2.300.3",
            "kind": 2,
            "productName": "Subs - 5.0.2.300",
            "productGroup": "5EFB723679D3427494B50F...",
            "purchaseTime": 000,
            "oriPurchaseTime": 000,
            "purchaseState": 0,
            "developerPayload": "testPurchase",
            "purchaseToken": "00000177c51bf39fdc9aeedd717a4...",
            "purchaseType": 0,
            "currency": "TRY",
            "price": 100,
            "country": "TR",
            "subscriptionId": "1613919679391...",
            "quantity": 1,
            "daysLasted": 46,
            "numOfPeriods": 7,
            "numOfDiscount": 0,
            "expirationDate": 000,
            "retryFlag": 1,
            "introductoryFlag": 0,
            "trialFlag": 0,
            "renewStatus": 1,
            "renewPrice": 100,
            "cancelledSubKeepDays": 30,
            "payOrderId": "SandBox_161393343428...",
            "payType": "0",
            "confirmed": 1
        }
    ],
    "inAppSignatureList": [
        "J5XpBu7N6yvBZYX0NW4wusarhUchwY6r9...",
        "YB5UYofu2X3U0gEQWQhlB3YRMS2z0oCG9..."
    ],
    "itemList": [
        "subscription4",
        "5.0.2.300.3"
    ],
    "placedInappPurchaseDataList": [],
    "placedInappSignatureList": [],
    "returnCode": 0
}
HMSIAP.startIapActivity(startIapActivityReq)

Displays pages of HUAWEI IAP, including the subscription management page and subscription editing page.

ParameterTypeDescription
startIapActivityReqStartIapActivityReqRequest object for the startIapActivity API.
Return TypeDescription
Promise<Result\>Promise resolves in a successful operation. Otherwise, it throws an error.

Call Example

const startIapActivityReq = {
    type: HMSIAP.StartIapActivityReqType.TYPE_SUBSCRIBE_EDIT_ACTIVITY,
    subscribeProductId: "productId"
}

HMSIAP.obtainOwnedPurchaseRecord(startIapActivityReq)
    .then((res) => {
        console.log(res.data)
    })
    .catch((err) => {
        console.log(err)
    });

Data Types

Result

NameTypeDescription
statusstringResult status.
resultCodenumberResult Code
dataobjectResult object according to the API. Such as IsEnvReadyResult, IsSandboxActivatedResult, OwnedPurchasesResult, ProductInfoResult, PurchaseIntentResult, ConsumeOwnedPurchaseResult.

OwnedPurchasesReq

Request information of the obtainOwnedPurchases or obtainOwnedPurchaseRecord API.

NameTypeDescription
priceTypePriceTypeType of a product to be queried.IN_APP_CONSUMABLE: consumableIN_APP_NONCONSUMABLE: non-consumableIN_APP_SUBSCRIPTION: auto-renewable subscription.
continuationTokenstringData location flag for query in pagination mode. This parameter is optional for the first query. After the API is called, the returned information contains this parameter. If query in pagination mode is required for the next API call, this parameter can be set for the second query.

ProductInfoReq

NameTypeDescription
priceTypePriceTypeType of a product to be queried.IN_APP_CONSUMABLE: consumableIN_APP_NONCONSUMABLE: non-consumableIN_APP_SUBSCRIPTION: auto-renewable subscription
skuIdsstring[]ID list of products to be queried. Each product ID must exist and be unique in the current app. The product ID is the same as that you set when configuring product information in AppGallery Connect.

PurchaseIntentReq

NameTypeDescription
productIdstringID of a product to be paid. The product ID is the same as that you set when configuring product information in AppGallery Connect.
priceTypePriceTypeType of a product to be queried.IN_APP_CONSUMABLE: consumableIN_APP_NONCONSUMABLE: non-consumableIN_APP_SUBSCRIPTION: auto-renewable subscription.
developerPayloadstringInformation stored on the merchant side. If this parameter is set to a value, the value will be returned in the callback result to the app after successful payment.
reservedInforstringThis parameter is used to pass the extra fields set by a merchant in a JSON string in the key:value format.

ConsumeOwnedPurchaseReq

NameTypeDescription
purchaseTokenstringPurchase token, which is generated by the Huawei IAP server during payment and returned to the app.
developerChallengestringUser-defined challenge, which uniquely identifies a consumption request. It is recorded in the purchase information and returned after the consumption is successful.

StartIapActivityReq

NameTypeDescription
typeStartIapActivityReqTypeType of the page to be redirected to.TYPE_SUBSCRIBE_MANAGER_ACTIVITY: subscription management pageTYPE_SUBSCRIBE_EDIT_ACTIVITY: subscription editing page
subscribeProductIdstringIn-app product ID. Optional parameter. If this parameter is passed, the app will switch to the subscription details page. Otherwise, the app will switch to the subscription management

IsEnvReadyResult

NameTypeDescription
returnCodenumberResult code.

IsSandboxActivatedResult

NameTypeDescription
returnCodenumberResult code.
errMsgstringResult code description.
isSandboxUserbooleanIndicates whether a sandbox testing ID is used.
isSandboxApkbooleanIndicates whether the app APK version meets the requirements of sandbox testing.
versionInApkstringApp version information.
versionFrMarketstringInformation about the app version that is last released on HUAWEI AppGallery.

OwnedPurchasesResult

NameTypeDescription
returnCodenumberResult code.
errMsgstringResult code description.
itemListstring[]ID list of found products.
inAppPurchaseDataListstring[]Information about products that have been purchased but not consumed or about all existing subscription relationships of users using the obtainOwnedPurchases method. Historical consumable information or all subscription receipts, which are returned using the obtainOwnedPurchaseRecord method.
inAppSignaturestring[]Signature character string of each subscription relationship in the InAppPurchaseDataList list.
continuationTokenstringData location flag.If a user has a large number of products and the response contains continuationToken, the app must initiate another call on the current method and pass continuationToken currently received. If product query is still incomplete, the app needs to call the API again until no continuationToken is returned, indicating that all products are returned.
placedInappPurchaseDataListstring[]Subscription relationship information about a user who has performed subscription switchover.
placedInappSignatureListstring[]Signature string of each subscription relationship in the PlacedInappPurchaseDataList list.

ProductInfoResult

NameTypeDescription
returnCodenumberResult code.
errMsgstringResult code description.
skuListProductInfo[]List of found products.

ProductInfo

NameTypeDescription
productIdstringProduct ID.
priceTypePriceTypeType of a product to be queried.IN_APP_CONSUMABLE: consumableIN_APP_NONCONSUMABLE: non-consumableIN_APP_SUBSCRIPTION: auto-renewable subscription.
pricestringDisplayed price of a product, including the currency symbol and actual price of the product. The value is in the Currency symbolPrice format, for example, ¥0.15. The price includes the tax.
microsPricenumberProduct price in micro unit, which equals to the actual product price multiplied by 1,000,000. For example, if the actual price of a product is US$1.99, the product price in micro unit is 1990000 (1.99 x 1000000).
originalLocalPricestringOriginal price of a product, including the currency symbol and actual price of the product. The value is in the Currency symbolPrice format, for example, ¥0.15. The price includes the tax.
originalMicroPricenumberOriginal price of a product in micro unit, which equals to the original product price multiplied by 1,000,000.For example, if the original price of a product is US$1.99, the product price in micro unit is 1990000 (1.99 x 1000000).
currencystringCurrency used to pay for a product. The value must comply with the ISO 4217 standard.Example: USD, CNY, and TRY
productNamestringProduct name, which is set during product information configuration. The name is displayed on the checkout page.
productDescstringDescription of a product, which is set during product information configuration.
subPeriodstringUnit of a subscription period, which complies with the ISO 8601 standard. For example, P1W indicates 1 week, P1M indicates 1 month, P2M indicates 2 months, P6M indicates 6 months, and P1Y indicates 1 year. This parameter is returned only when subscriptions are queried.
subSpecialPricestringPromotional price of a subscription, including the currency symbol and actual price. The value is in the Currency symbolPrice format, for example, ¥0.15. The price includes the tax.This parameter is returned only when subscriptions are queried.
subSpecialPriceMicrosnumberPromotional subscription price in micro unit, which equals to the actual promotional subscription price multiplied by 1,000,000. For example, if the actual price of a product is US$1.99, the product price in micro unit is 1990000 (1.99 x 1000000).This parameter is returned only when subscriptions are queried.
subSpecialPeriodstringPromotion period unit of a subscription, which complies with the ISO 8601 standard. For example, P1W indicates 1 week, P1M indicates 1 month, P2M indicates 2 months, P6M indicates 6 months, and P1Y indicates 1 year. This parameter is returned only when subscriptions are queried.
subSpecialPeriodCyclesnumberNumber of promotion periods of a subscription. It is set when you set the promotional price of a subscription in AppGallery Connect. For details, please refer to Setting a Promotional Price.This parameter is returned only when subscriptions are queried.
subFreeTrialPeriodstringFree trial period of a subscription. It is set when you set the promotional price of a subscription in AppGallery Connect. For details, please refer to Setting a Promotional Price.
subGroupIdstringID of the subscription group to which a subscription belongs.
subGroupTitlestringDescription of the subscription group to which a subscription belongs.
subProductLevelnumberLevel of a subscription in its subscription group.
statusnumberProduct status.0: valid.1: deleted. Products in this state cannot be renewed or subscribed to.6: removed. New subscriptions are not allowed, but users who have subscribed to products can still renew them.

PurchaseIntentResult

NameTypeDescription
returnCodenumberResult code.
errMsgstringResult code description.

ConsumeOwnedPurchaseResult

NameTypeDescription
consumePurchaseDatastringConsumption result data.
dataSignaturestringSignature string generated after consumption data is signed using a private payment key. The signature algorithm is SHA256withRSA.
returnCodenumberResult code.
errMsgstringResult code description.

Constants

PriceType

NameValueDescription
HMSIAP.PriceType.IN_APP_CONSUMABLE0Consumables.
HMSIAP.PriceType.IN_APP_NONCONSUMABLE1Non-consumables.
HMSIAP.PriceType.IN_APP_SUBSCRIPTION2Subscriptions.

StartIapActivityReqType

NameValueDescription
HMSIAP.StartIapActivityReqType.TYPE_SUBSCRIBE_MANAGER_ACTIVITY2Subscription management page.
HMSIAP.StartIapActivityReqType.TYPE_SUBSCRIBE_EDIT_ACTIVITY3Subscription editing page.

Result Codes

Result CodeDescriptive NameDescription
0STATUS_SUCCESSSuccess.
–1STATUS_FAILURECommon error code upon a failure.
60000ORDER_STATE_CANCELThe user cancels the payment.
60001ORDER_STATE_PARAM_ERRORParameter error (including no parameter).
60002ORDER_STATE_IAP_NOT_ACTIVATEDHUAWEI IAP is not enabled.
60003ORDER_STATE_PRODUCT_INVALIDIncorrect product information.
60004ORDER_STATE_CALLS_FREQUENTToo frequent API calls.
60005ORDER_STATE_NET_ERRORNetwork connection exception
60006ORDER_STATE_PMS_TYPE_NOT_MATCHThe found product type is inconsistent with that defined in the PMS.
60007ORDER_STATE_PRODUCT_COUNTRY_NOT_SUPPORTEDThe app to which the product belongs is not released in a specified location.
60020ORDER_VR_UNINSTALL_ERRORThe VR APK is not installed.
60050ORDER_HWID_NOT_LOGINThe HUAWEI ID is not signed in.
60051ORDER_PRODUCT_OWNEDA user failed to purchase a product because the user already owns the product.
60052ORDER_PRODUCT_NOT_OWNEDA user failed to consume a product because the user does not own the product.
60053ORDER_PRODUCT_CONSUMEDThe product has been consumed and cannot be consumed again.
60054ORDER_ACCOUNT_AREA_NOT_SUPPORTEDThe country or region of the signed-in HUAWEI ID does not support IAP.
60056ORDER_HIGH_RISK_OPERATIONSThe user triggers risk control, and the transaction is rejected.

4. Configuration and Description

Configuring Obfuscation Scripts

React Native

In order to prevent error while release build, you may need to add following lines in proguard-rules.pro file.

-ignorewarnings
-keepattributes *Annotation*
-keepattributes Exceptions
-keepattributes InnerClasses
-keepattributes Signature
-keep class com.hianalytics.android.**{*;}
-keep class com.huawei.updatesdk.**{*;}
-keep class com.huawei.hms.**{*;}
-repackageclasses

Cordova

Before building the APK, configure the obfuscation configuration file to prevent the HMS Core SDK from being obfuscated.

NOTE: This step is required only if you want to minify and obfuscate your app. By default obfuscation is disabled in Cordova and Ionic apps.

The obfuscation is done by ProGuard. By default, in Cordova and Ionic apps ProGuard is disabled. Even though ProGuard is not available, ProGuard support can be added through 3rd party ProGuard plugins. If ProGuard is enabled in your project, the Huawei Cordova IAP plugin's ProGuard rules need to be added to your project. These rules are as follows:

-ignorewarnings
-keepattributes *Annotation*
-keepattributes Exceptions
-keepattributes InnerClasses
-keepattributes Signature
-keep class com.huawei.hianalytics.**{*;}
-keep class com.huawei.updatesdk.**{*;}
-keep class com.huawei.hms.**{*;}
-repackageclasses

5. Questions or Issues

If you have questions about how to use HMS samples, try the following options:

  • Stack Overflow is the best place for any programming questions. Be sure to tag your question with huawei-mobile-services.
  • Huawei Developer Forum HMS Core Module is great for general questions, or seeking recommendations and opinions.
  • Huawei Developer Docs is place to official documentation for all HMS Core Kits, you can find detailed documentations in there.

6. Licensing and Terms

Huawei JS SDK is licensed under Apache 2.0 license.