-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
120 lines (113 loc) · 4.31 KB
/
Copy pathindex.html
File metadata and controls
120 lines (113 loc) · 4.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/webp" sizes="32x32" href="/favicon-32.webp" />
<link rel="icon" type="image/webp" sizes="16x16" href="/favicon-16.webp" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- Primary Meta Tags -->
<title>OpenIAP - Unified Specification for In-App Purchases</title>
<meta
name="title"
content="OpenIAP - Unified Specification for In-App Purchases"
/>
<meta
name="description"
content="OpenIAP is a unified specification for in-app purchases across platforms, frameworks, and emerging technologies. Standardizing IAP implementations to reduce fragmentation."
/>
<meta
name="keywords"
content="IAP, in-app purchase, mobile development, iOS, Android, StoreKit 2, Google Play Billing, React Native, Flutter, Kotlin Multiplatform, Godot, Unity, visionOS, Vision Pro, Meta Quest, Horizon OS, Amazon Fire OS, Vega OS, subscription, consumable, non-consumable"
/>
<meta name="author" content="OpenIAP" />
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://openiap.dev/" />
<meta
property="og:title"
content="OpenIAP - Unified Specification for In-App Purchases"
/>
<meta
property="og:description"
content="OpenIAP is a unified specification for in-app purchases across platforms, frameworks, and emerging technologies. Standardizing IAP implementations to reduce fragmentation."
/>
<meta property="og:image" content="https://openiap.dev/og-image.webp" />
<meta property="og:site_name" content="OpenIAP" />
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://openiap.dev/" />
<meta
property="twitter:title"
content="OpenIAP - Unified Specification for In-App Purchases"
/>
<meta
property="twitter:description"
content="OpenIAP is a unified specification for in-app purchases across platforms, frameworks, and emerging technologies."
/>
<meta
property="twitter:image"
content="https://openiap.dev/og-image.webp"
/>
<!-- Additional SEO -->
<link rel="canonical" href="https://openiap.dev/" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow" />
<!-- Favicon variations -->
<link rel="apple-touch-icon" sizes="180x180" href="/logo.webp" />
<!-- AI/LLM Context (llms.txt standard) -->
<link
rel="alternate"
type="text/plain"
title="LLM Context"
href="/llms.txt"
/>
<link
rel="alternate"
type="text/plain"
title="LLM Full Context"
href="/llms-full.txt"
/>
<!-- Schema.org JSON-LD -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "OpenIAP",
"url": "https://openiap.dev",
"description": "OpenIAP is a unified specification for in-app purchases across platforms, frameworks, and emerging technologies.",
"inLanguage": "en",
"author": {
"@type": "Organization",
"name": "OpenIAP",
"url": "https://openiap.dev",
"logo": "https://openiap.dev/logo.webp",
"sameAs": [
"https://github.com/hyodotdev/openiap",
"https://github.com/hyodotdev/openiap/tree/main/libraries/react-native-iap",
"https://github.com/hyodotdev/openiap/tree/main/libraries/expo-iap"
]
},
"potentialAction": {
"@type": "SearchAction",
"target": "https://openiap.dev/docs?search={search_term_string}",
"query-input": "required name=search_term_string"
},
"about": {
"@type": "SoftwareApplication",
"name": "OpenIAP",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "iOS, Android, visionOS, Horizon OS, Fire OS, Vega OS",
"offers": {
"@type": "Offer",
"price": "0",
"priceCurrency": "USD"
}
}
}
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>