No app registration
A normal link is the entire integration. There are no client secrets, SDKs, or approval queues.
Open integration · no API key
Send one or more public download URLs. The player reviews every source, chooses their own server and folder, and PixelCloud handles the safe transfer.
A normal link is the entire integration. There are no client secrets, SDKs, or approval queues.
Players see the full source URL before choosing a server, so the handoff never hides where files came from.
Your community suggests files; the server owner explicitly chooses where they belong.
What players see
The installer keeps third-party sources transparent and puts the final server and folder decision in the player’s hands.

Review sources and choose a server. Full URLs, server ownership, lifecycle state, and file-manager readiness are visible before continuing.

Choose the exact folder. Installer mode removes unrelated controls and keeps the destination plus final action in view.
Integration contract
Create a normal browser link and percent-encode every source URL. Append downloadUrl again when one install action contains multiple files.
Each URL should resolve to a downloadable file with a safe filename.
Use one install action for the files that belong together, up to the service limits.
Authentication and server ownership remain entirely inside PixelCloud.
const files = [
'https://cdn.example.com/mod.jar',
'https://cdn.example.com/config.zip',
]
const params = new URLSearchParams()
files.forEach((url) => params.append('downloadUrl', url))
const installUrl =
`https://pixelcloud.cn/installer?${params}`
installButton.href = installUrlContract: GET /installer?downloadUrl=<encoded-url>&downloadUrl=<encoded-url>
Built-in guardrails
The integration is intentionally simple, while the installation path enforces the controls expected around a live game server.
Only an authenticated owner can choose one of their game servers. The referring site never receives account access.
All target filenames are checked first. If any file already exists, nothing is installed.
Sources and redirects are validated to prevent downloads from private or unsafe network locations.
Accepted installs become persistent background tasks with transfer progress and clear completion status.
For mod and server-pack communities
Add the link alongside your existing download button. PixelCloud takes care of account sign-in, destination selection, conflicts, and progress.