跳过内容

开始

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.

如果您更喜欢手动设置,请运行以下命令安装插件,并按照以下平台特定的说明进行操作:

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

导入

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

复制到剪贴板

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'
});

直接在 Google Play 商店中深度链接到开发者的页面。 仅限 Android。

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

将用户链接到 Google Play 商店中的收藏或热门榜。 仅限 Android。

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

将用户链接到 Google Play 商店中的编辑推荐页面。 仅限 Android。

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

使用自定义搜索词在 Google Play 商店中搜索。 仅限 Android。

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

真实数据来源

标题:真实数据来源

本页面由插件的 src/definitions.ts重新同步时,公共API上游发生变化时,请重新运行同步。

如果您正在使用 开始 计划仪表板和API操作时,连接它到 使用@capgo/capacitor-native-market 为使用@capgo/capacitor-native-market中的本机功能 API概述 在 API 概述中了解实现细节 简介 在简介中了解实现细节 API 密钥 在 API 密钥中了解实现细节,并 设备 在设备中了解实现细节。