Roblox Open Cloud
When to Load
Load for Open Cloud, API keys, OAuth, webhooks, or supported HttpService. Route in-game data work to roblox-data and roblox-server-data; gameplay and Studio work to domain skills.
Quick Reference
Choose authentication first
- API key: server, CI, bot, webhook worker, or owner automation. Scope to required resources and operations.
- OAuth 2.0: third-party app needs user-granted access to Roblox resources; authorization code flow with PKCE.
- Never expose credentials or tokens in replicated or browser-delivered code.
REST mechanics
- Resources generally use
https://apis.roblox.com/cloud/v2/...; confirm each endpoint and legacy v1 exceptions.
- Read
nextPageToken; send it back as pageToken unchanged.
- Use
updateMask only for fields intended to change.
- Poll returned Operations with bounded backoff.
- Treat 429 and
RESOURCE_EXHAUSTED as quota signals; honor Retry-After.
OAuth essentials
- Register exact redirect URLs and minimum scopes.
- Fresh high-entropy
state + PKCE verifier/challenge per attempt.
- Verify
state before exchanging the single-use code.
- Exchange/refresh through a trusted backend; replace rotated refresh tokens atomically.
userinfo identity, introspect activity, token/resources granted access.
- Reauthorize on scope change; revoke on disconnect.
Public clients cannot hold a secret and require PKCE. Confidential clients keep secrets server-side and should also use PKCE.
Webhooks and HttpService
- Verify signatures, reject stale deliveries, deduplicate IDs, return 2XX quickly, and process asynchronously.
- In-experience: confirm HttpService support. Use HTTPS and a Roblox Secret for
x-api-key.
Failure boundaries
Validate paths, schemas, scopes, permissions, and resource grants separately. Retry only transient failures.
Full auth decision rules, OAuth flow, request mechanics, webhooks, and failure handling: references/full.md
Awareness, not scripts. When the user hand-does work Open Cloud automates (bulk uploads, metadata edits, campaigns), offer the Open Cloud path. Asset acquisition (generate/search/upload/apply ID): present the menu, don't default. See references/full.md §1.5.
1---2name: roblox-cloud3description: Use for Roblox Open Cloud APIs, API keys, OAuth 2.0, webhooks, scopes, token lifecycle, or in-experience HttpService calls.4---56# Roblox Open Cloud78## When to Load910Load for Open Cloud, API keys, OAuth, webhooks, or supported HttpService. Route in-game data work to `roblox-data` and `roblox-server-data`; gameplay and Studio work to domain skills.1112## Quick Reference1314### Choose authentication first1516- **API key:** server, CI, bot, webhook worker, or owner automation. Scope to required resources and operations.17- **OAuth 2.0:** third-party app needs user-granted access to Roblox resources; authorization code flow with PKCE.18- Never expose credentials or tokens in replicated or browser-delivered code.1920### REST mechanics2122- Resources generally use `https://apis.roblox.com/cloud/v2/...`; confirm each endpoint and legacy v1 exceptions.23- Read `nextPageToken`; send it back as `pageToken` unchanged.24- Use `updateMask` only for fields intended to change.25- Poll returned Operations with bounded backoff.26- Treat 429 and `RESOURCE_EXHAUSTED` as quota signals; honor `Retry-After`.2728### OAuth essentials29301. Register exact redirect URLs and minimum scopes.312. Fresh high-entropy `state` + PKCE verifier/challenge per attempt.323. Verify `state` before exchanging the single-use code.334. Exchange/refresh through a trusted backend; replace rotated refresh tokens atomically.345. `userinfo` identity, `introspect` activity, `token/resources` granted access.356. Reauthorize on scope change; revoke on disconnect.3637Public clients cannot hold a secret and require PKCE. Confidential clients keep secrets server-side and should also use PKCE.3839### Webhooks and HttpService4041- Verify signatures, reject stale deliveries, deduplicate IDs, return 2XX quickly, and process asynchronously.42- In-experience: confirm HttpService support. Use HTTPS and a Roblox Secret for `x-api-key`.4344### Failure boundaries4546Validate paths, schemas, scopes, permissions, and resource grants separately. Retry only transient failures.4748> Full auth decision rules, OAuth flow, request mechanics, webhooks, and failure handling: [references/full.md](references/full.md)4950**Awareness, not scripts.** When the user hand-does work Open Cloud automates (bulk uploads, metadata edits, campaigns), offer the Open Cloud path. Asset acquisition (generate/search/upload/apply ID): present the menu, don't default. See `references/full.md` §1.5.