1.0.91 • Published 3 months ago

gap-miniapp-sdk v1.0.91

Weekly downloads
-
License
ISC
Repository
-
Last release
3 months ago

GAP MiniApp SDK Usage Guide

Installation

To install the gap-miniapp-sdk package, run the following command:

npm install gap-miniapp-sdk

Initialization

  1. Import and initialize the SDK in your JavaScript or TypeScript application, preferring a Singleton object to communicate with the super app:

    import { GapMiniAppSdk } from 'gap-miniapp-sdk';
    
    const gapMiniAppSdk = new GapMiniAppSdk();
  2. Detect the platform on which the super app is running for the mini app to function correctly:

    let userAgent = gapMiniAppSdk.detectPlatform();
    gapMiniAppSdk.setPlatformExecutor(userAgent);

Usage

Example Functions Using the SDK

  1. Get the super app's current authentication information:

    const response = await gapMiniAppSdk.getInstance().getAccessToken();
  2. Set/Get storage item in the super app (This storage is constant and separate for each app and can be publicable):

    • Set a storage item:

      let data = {
        key: "test_key_1",
        value: { data: false },
        isPublic: 0
      };
      gapMiniAppSdk.setStorageItem(data).then((res) => console.log(res));
    • Get a storage item:

      let data = {
        key: "test_key_1"
      };
      await gapMiniAppSdk.getStorageItem(data)
        .then((res) => {
          console.log(res);
        })
        .catch((e) => {
          console.log(e);
        });

Full Functions

For a complete list of available functions, refer to the following interface file that defines each request/response type:

/gap-miniapp-sdk/dist/interface/gap_miniapp_interface
1.0.91

3 months ago

1.0.90

3 months ago

1.0.89

4 months ago

1.0.88

5 months ago

1.0.87

5 months ago

1.0.86

5 months ago

1.0.85

5 months ago

1.0.84

1 year ago

1.0.83

1 year ago

1.0.82

1 year ago

1.0.81

1 year ago

1.0.80

1 year ago

1.0.79

1 year ago

1.0.77

1 year ago

1.0.78

1 year ago

1.0.76

2 years ago

1.0.75

2 years ago

1.0.66

2 years ago

1.0.65

2 years ago

1.0.64

2 years ago

1.0.69

2 years ago

1.0.68

2 years ago

1.0.67

2 years ago

1.0.73

2 years ago

1.0.72

2 years ago

1.0.71

2 years ago

1.0.70

2 years ago

1.0.74

2 years ago

1.0.62

2 years ago

1.0.61

2 years ago

1.0.60

2 years ago

1.0.63

2 years ago

1.0.48

2 years ago

1.0.47

2 years ago

1.0.49

2 years ago

1.0.51

2 years ago

1.0.50

2 years ago

1.0.55

2 years ago

1.0.54

2 years ago

1.0.53

2 years ago

1.0.52

2 years ago

1.0.59

2 years ago

1.0.58

2 years ago

1.0.57

2 years ago

1.0.56

2 years ago

1.0.46

2 years ago

1.0.45

2 years ago

1.0.40

2 years ago

1.0.44

2 years ago

1.0.43

2 years ago

1.0.42

2 years ago

1.0.41

2 years ago

1.0.39

2 years ago

1.0.38

2 years ago

1.0.33

2 years ago

1.0.37

2 years ago

1.0.36

2 years ago

1.0.35

2 years ago

1.0.34

2 years ago

1.0.29

2 years ago

1.0.28

3 years ago

1.0.32

2 years ago

1.0.31

2 years ago

1.0.30

2 years ago

1.0.26

3 years ago

1.0.25

3 years ago

1.0.24

3 years ago

1.0.27

3 years ago

1.0.22

3 years ago

1.0.23

3 years ago

1.0.21

3 years ago

1.0.20

3 years ago

1.0.19

3 years ago

1.0.18

3 years ago

1.0.17

3 years ago

1.0.16

3 years ago

1.0.15

3 years ago

1.0.14

3 years ago

1.0.13

3 years ago

1.0.12

3 years ago

1.0.11

3 years ago

1.0.10

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago