1.0.91 • Published 1 year ago

gap-miniapp-sdk v1.0.91

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year 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

1 year ago

1.0.90

1 year ago

1.0.89

1 year ago

1.0.88

1 year ago

1.0.87

1 year ago

1.0.86

1 year ago

1.0.85

1 year ago

1.0.84

2 years ago

1.0.83

2 years ago

1.0.82

2 years ago

1.0.81

2 years ago

1.0.80

2 years ago

1.0.79

2 years ago

1.0.77

2 years ago

1.0.78

2 years ago

1.0.76

3 years ago

1.0.75

3 years ago

1.0.66

3 years ago

1.0.65

3 years ago

1.0.64

3 years ago

1.0.69

3 years ago

1.0.68

3 years ago

1.0.67

3 years ago

1.0.73

3 years ago

1.0.72

3 years ago

1.0.71

3 years ago

1.0.70

3 years ago

1.0.74

3 years ago

1.0.62

3 years ago

1.0.61

3 years ago

1.0.60

3 years ago

1.0.63

3 years ago

1.0.48

3 years ago

1.0.47

3 years ago

1.0.49

3 years ago

1.0.51

3 years ago

1.0.50

3 years ago

1.0.55

3 years ago

1.0.54

3 years ago

1.0.53

3 years ago

1.0.52

3 years ago

1.0.59

3 years ago

1.0.58

3 years ago

1.0.57

3 years ago

1.0.56

3 years ago

1.0.46

3 years ago

1.0.45

3 years ago

1.0.40

3 years ago

1.0.44

3 years ago

1.0.43

3 years ago

1.0.42

3 years ago

1.0.41

3 years ago

1.0.39

3 years ago

1.0.38

3 years ago

1.0.33

3 years ago

1.0.37

3 years ago

1.0.36

3 years ago

1.0.35

3 years ago

1.0.34

3 years ago

1.0.29

3 years ago

1.0.28

3 years ago

1.0.32

3 years ago

1.0.31

3 years ago

1.0.30

3 years ago

1.0.26

3 years ago

1.0.25

4 years ago

1.0.24

4 years ago

1.0.27

3 years ago

1.0.22

4 years ago

1.0.23

4 years ago

1.0.21

4 years ago

1.0.20

4 years ago

1.0.19

4 years ago

1.0.18

4 years ago

1.0.17

4 years ago

1.0.16

4 years ago

1.0.15

4 years ago

1.0.14

4 years ago

1.0.13

4 years ago

1.0.12

4 years ago

1.0.11

4 years ago

1.0.10

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago