跳过内容

Getting Started

GitHub

您可以使用我们的 AI 助手设置来安装插件。使用以下命令将 Capgo 技能添加到您的 AI 工具中:

终端窗口
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins

然后使用以下提示:

Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-native-market` plugin in my project.

如果您prefer手动设置,请运行以下命令并按照以下平台特定的说明进行安装:

终端窗口
npm install @capgo/capacitor-native-market
npx cap sync

导入

导入
import { NativeMarket } from '@capgo/capacitor-native-market';

API 介绍

API 介绍

openStoreListing

__CAPGO_KEEP_1__

在Play Store(Android)或App Store(iOS)中打开应用列表页面。

import { NativeMarket } from '@capgo/capacitor-native-market';
// Open app in store
await NativeMarket.openStoreListing({
appId: 'com.example.app'
});
// Open app in specific country store (iOS only)
await NativeMarket.openStoreListing({
appId: 'com.example.app',
country: 'IT'
});

openDevPage

__CAPGO_KEEP_2__

直接深度链接到Play Store中的开发者页面。 仅限Android。

import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openDevPage({
devId: 'Google+LLC'
});

将用户链接到Play Store的集合或顶级图表。 仅限Android。

import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openCollection({
name: 'featured'
});

将用户链接到Play Store的编辑推荐页面。 仅限Android。

import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.openEditorChoicePage({
editorChoice: 'editorial_fitness_apps_us'
});

使用自定义搜索词在Play Store中搜索。 仅限Android。

import { NativeMarket } from '@capgo/capacitor-native-market';
await NativeMarket.search({
terms: 'fitness apps'
});

本页面由插件生成 src/definitions.ts. 当 public API 在上游发生变化时,请重新同步。

继续从 Getting Started

标题:继续从 Getting Started

如果您正在使用 Getting Started 来规划仪表板和 API 操作,请将其与 使用 @capgo/capacitor-native-market 为 Using @capgo/capacitor-native-market 中的本机功能 API Overview 为 API Overview 中的实现细节 Introduction 为 Introduction 中的实现细节 API 键 为 API 键的实现细节提供键值对, 设备 为设备的实现细节提供键值对,