Getting Started
Salin prompt pengaturan dengan langkah instalasi dan panduan markdown lengkap untuk plugin ini.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-install-referrer`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/install-referrer/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
Pasang
Bagian berjudul “Pasang”bun add @capgo/capacitor-install-referrerbunx cap syncimport { InstallReferrer } from '@capgo/capacitor-install-referrer';Baca Detail Atribusi
Bagian berjudul “Baca Detail Atribusi”const result = await InstallReferrer.getReferrer();
if (result.platform === 'android') { console.log('Install referrer:', result.referrer); console.log('Click timestamp:', result.clickTimestampSeconds); console.log('Install timestamp:', result.installBeginTimestampSeconds);}
if (result.platform === 'ios') { console.log('AdServices token:', result.attributionToken);}Ambil Atribusi Apple di iOS
Bagian berjudul “Ambil Atribusi Apple di iOS”Jika Anda ingin native code memanggil endpoint atribusi Apple, masukkan fetchAppleAttribution.
const result = await InstallReferrer.getReferrer({ fetchAppleAttribution: true, appleAttributionRetryCount: 3, appleAttributionRetryDelayMs: 5000,});
// result.appleAttribution is the parsed Apple attribution response.// See the iOS attribution page for the Apple-provided payload fields.console.log(result.appleAttribution);Apple dapat mengembalikan 404 sambil data atribusi masih dalam proses siapkan untuk token yang valid. Opsi ulang kendali bagaimana sering plugin native mengulang sebelum menolak. Lihat Atribusi iOS untuk detail platform.
Alias Kompatibilitas
Bagian berjudul “Alias Kompatibilitas”GetReferrer() tersedia untuk aplikasi yang bermigrasi dari cap-play-install-referrer.
const result = await InstallReferrer.GetReferrer();Aplikasi baru code harus menggunakan getReferrer().
Teruskan dari Getting Started
Bagian berjudul “Teruskan dari Getting Started”Jika Anda menggunakan Mulai Membuat untuk merencanakan pekerjaan plugin native, hubungkannya dengan Menggunakan @capgo/capacitor-install-referrer untuk kemampuan native di Menggunakan @capgo/capacitor-install-referrer, Direktori Plugin Capgo untuk alur kerja produk di Direktori Plugin Capgo, Plugin-Plugin Capacitor oleh Capgo untuk detail implementasi di Plugin-Plugin Capacitor oleh Capgo, Menambahkan atau Mengupdate Plugin untuk detail implementasi di Menambahkan atau Mengupdate Plugin, dan Alternatif Plugin Enterprise Ionic untuk alur kerja produk di Alternatif Plugin Enterprise Ionic.