[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-vercel-labs-apple":3,"mdc--52c83h-key":35,"related-org-vercel-labs-apple":3451,"related-repo-vercel-labs-apple":3623},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":24,"repoUrl":25,"updatedAt":26,"license":27,"forks":28,"topics":29,"repo":30,"sourceUrl":33,"mdContent":34},"apple","emulate Apple Sign-in for local development","Emulated Sign in with Apple \u002F Apple OIDC for local development and testing. Use when the user needs to test Apple sign-in locally, emulate Apple OIDC discovery, handle Apple token exchange, configure Apple OAuth clients, or work with Apple userinfo without hitting real Apple APIs. Triggers include \"Apple OAuth\", \"emulate Apple\", \"mock Apple login\", \"test Apple sign-in\", \"Sign in with Apple\", \"Apple OIDC\", \"local Apple auth\", or any task requiring a local Apple OAuth\u002FOIDC provider.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"vercel-labs","Vercel Labs","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fvercel-labs.png",[12,16,19,21],{"name":13,"slug":14,"type":15},"Auth","auth","tag",{"name":17,"slug":18,"type":15},"Local Development","local-development",{"name":20,"slug":4,"type":15},"Apple",{"name":22,"slug":23,"type":15},"Testing","testing",1511,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Femulate","2026-07-17T06:08:52.141606",null,95,[],{"repoUrl":25,"stars":24,"forks":28,"topics":31,"description":32},[],"Local API emulation for CI and no-network sandboxes","https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Femulate\u002Ftree\u002FHEAD\u002Fskills\u002Fapple","---\nname: apple\ndescription: Emulated Sign in with Apple \u002F Apple OIDC for local development and testing. Use when the user needs to test Apple sign-in locally, emulate Apple OIDC discovery, handle Apple token exchange, configure Apple OAuth clients, or work with Apple userinfo without hitting real Apple APIs. Triggers include \"Apple OAuth\", \"emulate Apple\", \"mock Apple login\", \"test Apple sign-in\", \"Sign in with Apple\", \"Apple OIDC\", \"local Apple auth\", or any task requiring a local Apple OAuth\u002FOIDC provider.\nallowed-tools: Bash(npx emulate:*), Bash(emulate:*), Bash(curl:*)\n---\n\n# Apple Sign In Emulator\n\nSign in with Apple emulation with authorization code flow, PKCE support, RS256 ID tokens, and OIDC discovery.\n\n## Start\n\n```bash\n# Apple only\nnpx emulate --service apple\n\n# Default port (when run alone)\n# http:\u002F\u002Flocalhost:4000\n```\n\nOr programmatically:\n\n```typescript\nimport { createEmulator } from 'emulate'\n\nconst apple = await createEmulator({ service: 'apple', port: 4004 })\n\u002F\u002F apple.url === 'http:\u002F\u002Flocalhost:4004'\n```\n\n## Pointing Your App at the Emulator\n\n### Environment Variable\n\n```bash\nAPPLE_EMULATOR_URL=http:\u002F\u002Flocalhost:4004\n```\n\n### OAuth URL Mapping\n\n| Real Apple URL | Emulator URL |\n|----------------|-------------|\n| `https:\u002F\u002Fappleid.apple.com\u002F.well-known\u002Fopenid-configuration` | `$APPLE_EMULATOR_URL\u002F.well-known\u002Fopenid-configuration` |\n| `https:\u002F\u002Fappleid.apple.com\u002Fauth\u002Fauthorize` | `$APPLE_EMULATOR_URL\u002Fauth\u002Fauthorize` |\n| `https:\u002F\u002Fappleid.apple.com\u002Fauth\u002Ftoken` | `$APPLE_EMULATOR_URL\u002Fauth\u002Ftoken` |\n| `https:\u002F\u002Fappleid.apple.com\u002Fauth\u002Fkeys` | `$APPLE_EMULATOR_URL\u002Fauth\u002Fkeys` |\n| `https:\u002F\u002Fappleid.apple.com\u002Fauth\u002Frevoke` | `$APPLE_EMULATOR_URL\u002Fauth\u002Frevoke` |\n\n### Auth.js \u002F NextAuth.js\n\n```typescript\nimport Apple from '@auth\u002Fcore\u002Fproviders\u002Fapple'\n\nApple({\n  clientId: process.env.APPLE_CLIENT_ID,\n  clientSecret: process.env.APPLE_CLIENT_SECRET,\n  authorization: {\n    url: `${process.env.APPLE_EMULATOR_URL}\u002Fauth\u002Fauthorize`,\n    params: { scope: 'openid email name', response_mode: 'form_post' },\n  },\n  token: {\n    url: `${process.env.APPLE_EMULATOR_URL}\u002Fauth\u002Ftoken`,\n  },\n  jwks_endpoint: `${process.env.APPLE_EMULATOR_URL}\u002Fauth\u002Fkeys`,\n})\n```\n\n### Passport.js\n\n```typescript\nimport { Strategy as AppleStrategy } from 'passport-apple'\n\nconst APPLE_URL = process.env.APPLE_EMULATOR_URL ?? 'https:\u002F\u002Fappleid.apple.com'\n\nnew AppleStrategy({\n  clientID: process.env.APPLE_CLIENT_ID,\n  teamID: process.env.APPLE_TEAM_ID,\n  keyID: process.env.APPLE_KEY_ID,\n  callbackURL: 'http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple',\n  authorizationURL: `${APPLE_URL}\u002Fauth\u002Fauthorize`,\n  tokenURL: `${APPLE_URL}\u002Fauth\u002Ftoken`,\n}, verifyCallback)\n```\n\n## Seed Config\n\n```yaml\napple:\n  users:\n    - email: testuser@icloud.com\n      name: Test User\n      given_name: Test\n      family_name: User\n    - email: private@example.com\n      name: Private User\n      is_private_email: true\n  oauth_clients:\n    - client_id: com.example.app\n      team_id: TEAM001\n      name: My Apple App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple\n```\n\nWhen no OAuth clients are configured, the emulator accepts any `client_id`. With clients configured, strict validation is enforced for `client_id` and `redirect_uri`.\n\nUsers with `is_private_email: true` get a generated `@privaterelay.appleid.com` email in the `id_token` instead of their real email.\n\n## API Endpoints\n\n### OIDC Discovery\n\n```bash\ncurl http:\u002F\u002Flocalhost:4004\u002F.well-known\u002Fopenid-configuration\n```\n\nReturns the standard OIDC discovery document with all endpoints pointing to the emulator:\n\n```json\n{\n  \"issuer\": \"http:\u002F\u002Flocalhost:4004\",\n  \"authorization_endpoint\": \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fauthorize\",\n  \"token_endpoint\": \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Ftoken\",\n  \"jwks_uri\": \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fkeys\",\n  \"revocation_endpoint\": \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Frevoke\",\n  \"response_types_supported\": [\"code\"],\n  \"subject_types_supported\": [\"pairwise\"],\n  \"id_token_signing_alg_values_supported\": [\"RS256\"],\n  \"scopes_supported\": [\"openid\", \"email\", \"name\"],\n  \"token_endpoint_auth_methods_supported\": [\"client_secret_post\"],\n  \"response_modes_supported\": [\"query\", \"fragment\", \"form_post\"]\n}\n```\n\n### JWKS\n\n```bash\ncurl http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fkeys\n```\n\nReturns an RSA public key (`kid`: `emulate-apple-1`) for verifying `id_token` signatures.\n\n### Authorization\n\n```bash\n# Browser flow: redirects to a user picker page\ncurl -v \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fauthorize?\\\nclient_id=com.example.app&\\\nredirect_uri=http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple&\\\nscope=openid+email+name&\\\nresponse_type=code&\\\nstate=random-state&\\\nnonce=random-nonce&\\\nresponse_mode=form_post\"\n```\n\nQuery parameters:\n\n| Param | Description |\n|-------|-------------|\n| `client_id` | OAuth client ID (Apple Services ID) |\n| `redirect_uri` | Callback URL |\n| `scope` | Space-separated scopes (`openid email name`) |\n| `state` | Opaque state for CSRF protection |\n| `nonce` | Nonce for ID token (optional) |\n| `response_mode` | `query` (default), `form_post`, or `fragment` |\n\nThe emulator renders an HTML page where you select a seeded user. After selection, it redirects (or auto-submits a form for `form_post`) to `redirect_uri` with `code` and `state`. On the **first** authorization per user\u002Fclient pair, a `user` JSON blob is also included (matching Apple's real behavior).\n\n### Token Exchange\n\n```bash\ncurl -X POST http:\u002F\u002Flocalhost:4004\u002Fauth\u002Ftoken \\\n  -H \"Content-Type: application\u002Fx-www-form-urlencoded\" \\\n  -d \"code=\u003Cauthorization_code>&\\\nclient_id=com.example.app&\\\nclient_secret=\u003Cclient_secret>&\\\ngrant_type=authorization_code\"\n```\n\nReturns:\n\n```json\n{\n  \"access_token\": \"apple_...\",\n  \"refresh_token\": \"r_apple_...\",\n  \"id_token\": \"\u003Cjwt>\",\n  \"token_type\": \"Bearer\",\n  \"expires_in\": 3600\n}\n```\n\nThe `id_token` is an RS256 JWT containing `sub`, `email`, `email_verified` (string), `is_private_email` (string), `real_user_status`, `auth_time`, and optional `nonce`.\n\n### Refresh Token\n\n```bash\ncurl -X POST http:\u002F\u002Flocalhost:4004\u002Fauth\u002Ftoken \\\n  -H \"Content-Type: application\u002Fx-www-form-urlencoded\" \\\n  -d \"refresh_token=r_apple_...&\\\nclient_id=com.example.app&\\\ngrant_type=refresh_token\"\n```\n\nReturns a new `access_token` and `id_token`. No new `refresh_token` is issued on refresh (matching Apple's behavior).\n\n### Token Revocation\n\n```bash\ncurl -X POST http:\u002F\u002Flocalhost:4004\u002Fauth\u002Frevoke \\\n  -H \"Content-Type: application\u002Fx-www-form-urlencoded\" \\\n  -d \"token=apple_...\"\n```\n\nReturns `200 OK`. The token is removed from the emulator's token map.\n\n## Common Patterns\n\n### Full Authorization Code Flow\n\n```bash\nAPPLE_URL=\"http:\u002F\u002Flocalhost:4004\"\nCLIENT_ID=\"com.example.app\"\nREDIRECT_URI=\"http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple\"\n\n# 1. Open in browser (user picks a seeded account)\n#    $APPLE_URL\u002Fauth\u002Fauthorize?client_id=$CLIENT_ID&redirect_uri=$REDIRECT_URI&scope=openid+email+name&response_type=code&state=abc&response_mode=form_post\n\n# 2. After user selection, emulator posts to:\n#    $REDIRECT_URI with code=\u003Ccode>&state=abc (and user JSON on first auth)\n\n# 3. Exchange code for tokens\ncurl -X POST $APPLE_URL\u002Fauth\u002Ftoken \\\n  -H \"Content-Type: application\u002Fx-www-form-urlencoded\" \\\n  -d \"code=\u003Ccode>&client_id=$CLIENT_ID&grant_type=authorization_code\"\n\n# 4. Decode the id_token JWT to get user info\n```\n\n### Private Relay Email\n\nWhen a user has `is_private_email: true` in the seed config, the `id_token` will contain a generated `@privaterelay.appleid.com` email instead of the user's real email. This matches Apple's Hide My Email behavior.\n",{"data":36,"body":38},{"name":4,"description":6,"allowed-tools":37},"Bash(npx emulate:*), Bash(emulate:*), Bash(curl:*)",{"type":39,"children":40},"root",[41,50,56,63,141,146,308,314,321,345,351,484,490,927,933,1301,1307,1559,1586,1615,1621,1627,1647,1652,2179,2185,2204,2232,2238,2364,2369,2515,2563,2569,2684,2689,2882,2944,2950,3046,3071,3077,3151,3164,3170,3176,3413,3419,3445],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"apple-sign-in-emulator",[47],{"type":48,"value":49},"text","Apple Sign In Emulator",{"type":42,"tag":51,"props":52,"children":53},"p",{},[54],{"type":48,"value":55},"Sign in with Apple emulation with authorization code flow, PKCE support, RS256 ID tokens, and OIDC discovery.",{"type":42,"tag":57,"props":58,"children":60},"h2",{"id":59},"start",[61],{"type":48,"value":62},"Start",{"type":42,"tag":64,"props":65,"children":70},"pre",{"className":66,"code":67,"language":68,"meta":69,"style":69},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Apple only\nnpx emulate --service apple\n\n# Default port (when run alone)\n# http:\u002F\u002Flocalhost:4000\n","bash","",[71],{"type":42,"tag":72,"props":73,"children":74},"code",{"__ignoreMap":69},[75,87,113,123,132],{"type":42,"tag":76,"props":77,"children":80},"span",{"class":78,"line":79},"line",1,[81],{"type":42,"tag":76,"props":82,"children":84},{"style":83},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[85],{"type":48,"value":86},"# Apple only\n",{"type":42,"tag":76,"props":88,"children":90},{"class":78,"line":89},2,[91,97,103,108],{"type":42,"tag":76,"props":92,"children":94},{"style":93},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[95],{"type":48,"value":96},"npx",{"type":42,"tag":76,"props":98,"children":100},{"style":99},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[101],{"type":48,"value":102}," emulate",{"type":42,"tag":76,"props":104,"children":105},{"style":99},[106],{"type":48,"value":107}," --service",{"type":42,"tag":76,"props":109,"children":110},{"style":99},[111],{"type":48,"value":112}," apple\n",{"type":42,"tag":76,"props":114,"children":116},{"class":78,"line":115},3,[117],{"type":42,"tag":76,"props":118,"children":120},{"emptyLinePlaceholder":119},true,[121],{"type":48,"value":122},"\n",{"type":42,"tag":76,"props":124,"children":126},{"class":78,"line":125},4,[127],{"type":42,"tag":76,"props":128,"children":129},{"style":83},[130],{"type":48,"value":131},"# Default port (when run alone)\n",{"type":42,"tag":76,"props":133,"children":135},{"class":78,"line":134},5,[136],{"type":42,"tag":76,"props":137,"children":138},{"style":83},[139],{"type":48,"value":140},"# http:\u002F\u002Flocalhost:4000\n",{"type":42,"tag":51,"props":142,"children":143},{},[144],{"type":48,"value":145},"Or programmatically:",{"type":42,"tag":64,"props":147,"children":151},{"className":148,"code":149,"language":150,"meta":69,"style":69},"language-typescript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { createEmulator } from 'emulate'\n\nconst apple = await createEmulator({ service: 'apple', port: 4004 })\n\u002F\u002F apple.url === 'http:\u002F\u002Flocalhost:4004'\n","typescript",[152],{"type":42,"tag":72,"props":153,"children":154},{"__ignoreMap":69},[155,201,208,300],{"type":42,"tag":76,"props":156,"children":157},{"class":78,"line":79},[158,164,170,176,181,186,191,196],{"type":42,"tag":76,"props":159,"children":161},{"style":160},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[162],{"type":48,"value":163},"import",{"type":42,"tag":76,"props":165,"children":167},{"style":166},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[168],{"type":48,"value":169}," {",{"type":42,"tag":76,"props":171,"children":173},{"style":172},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[174],{"type":48,"value":175}," createEmulator",{"type":42,"tag":76,"props":177,"children":178},{"style":166},[179],{"type":48,"value":180}," }",{"type":42,"tag":76,"props":182,"children":183},{"style":160},[184],{"type":48,"value":185}," from",{"type":42,"tag":76,"props":187,"children":188},{"style":166},[189],{"type":48,"value":190}," '",{"type":42,"tag":76,"props":192,"children":193},{"style":99},[194],{"type":48,"value":195},"emulate",{"type":42,"tag":76,"props":197,"children":198},{"style":166},[199],{"type":48,"value":200},"'\n",{"type":42,"tag":76,"props":202,"children":203},{"class":78,"line":89},[204],{"type":42,"tag":76,"props":205,"children":206},{"emptyLinePlaceholder":119},[207],{"type":48,"value":122},{"type":42,"tag":76,"props":209,"children":210},{"class":78,"line":115},[211,217,222,227,232,237,242,247,253,258,262,266,271,276,281,285,291,295],{"type":42,"tag":76,"props":212,"children":214},{"style":213},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[215],{"type":48,"value":216},"const",{"type":42,"tag":76,"props":218,"children":219},{"style":172},[220],{"type":48,"value":221}," apple ",{"type":42,"tag":76,"props":223,"children":224},{"style":166},[225],{"type":48,"value":226},"=",{"type":42,"tag":76,"props":228,"children":229},{"style":160},[230],{"type":48,"value":231}," await",{"type":42,"tag":76,"props":233,"children":235},{"style":234},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[236],{"type":48,"value":175},{"type":42,"tag":76,"props":238,"children":239},{"style":172},[240],{"type":48,"value":241},"(",{"type":42,"tag":76,"props":243,"children":244},{"style":166},[245],{"type":48,"value":246},"{",{"type":42,"tag":76,"props":248,"children":250},{"style":249},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[251],{"type":48,"value":252}," service",{"type":42,"tag":76,"props":254,"children":255},{"style":166},[256],{"type":48,"value":257},":",{"type":42,"tag":76,"props":259,"children":260},{"style":166},[261],{"type":48,"value":190},{"type":42,"tag":76,"props":263,"children":264},{"style":99},[265],{"type":48,"value":4},{"type":42,"tag":76,"props":267,"children":268},{"style":166},[269],{"type":48,"value":270},"'",{"type":42,"tag":76,"props":272,"children":273},{"style":166},[274],{"type":48,"value":275},",",{"type":42,"tag":76,"props":277,"children":278},{"style":249},[279],{"type":48,"value":280}," port",{"type":42,"tag":76,"props":282,"children":283},{"style":166},[284],{"type":48,"value":257},{"type":42,"tag":76,"props":286,"children":288},{"style":287},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[289],{"type":48,"value":290}," 4004",{"type":42,"tag":76,"props":292,"children":293},{"style":166},[294],{"type":48,"value":180},{"type":42,"tag":76,"props":296,"children":297},{"style":172},[298],{"type":48,"value":299},")\n",{"type":42,"tag":76,"props":301,"children":302},{"class":78,"line":125},[303],{"type":42,"tag":76,"props":304,"children":305},{"style":83},[306],{"type":48,"value":307},"\u002F\u002F apple.url === 'http:\u002F\u002Flocalhost:4004'\n",{"type":42,"tag":57,"props":309,"children":311},{"id":310},"pointing-your-app-at-the-emulator",[312],{"type":48,"value":313},"Pointing Your App at the Emulator",{"type":42,"tag":315,"props":316,"children":318},"h3",{"id":317},"environment-variable",[319],{"type":48,"value":320},"Environment Variable",{"type":42,"tag":64,"props":322,"children":324},{"className":66,"code":323,"language":68,"meta":69,"style":69},"APPLE_EMULATOR_URL=http:\u002F\u002Flocalhost:4004\n",[325],{"type":42,"tag":72,"props":326,"children":327},{"__ignoreMap":69},[328],{"type":42,"tag":76,"props":329,"children":330},{"class":78,"line":79},[331,336,340],{"type":42,"tag":76,"props":332,"children":333},{"style":172},[334],{"type":48,"value":335},"APPLE_EMULATOR_URL",{"type":42,"tag":76,"props":337,"children":338},{"style":166},[339],{"type":48,"value":226},{"type":42,"tag":76,"props":341,"children":342},{"style":99},[343],{"type":48,"value":344},"http:\u002F\u002Flocalhost:4004\n",{"type":42,"tag":315,"props":346,"children":348},{"id":347},"oauth-url-mapping",[349],{"type":48,"value":350},"OAuth URL Mapping",{"type":42,"tag":352,"props":353,"children":354},"table",{},[355,374],{"type":42,"tag":356,"props":357,"children":358},"thead",{},[359],{"type":42,"tag":360,"props":361,"children":362},"tr",{},[363,369],{"type":42,"tag":364,"props":365,"children":366},"th",{},[367],{"type":48,"value":368},"Real Apple URL",{"type":42,"tag":364,"props":370,"children":371},{},[372],{"type":48,"value":373},"Emulator URL",{"type":42,"tag":375,"props":376,"children":377},"tbody",{},[378,400,421,442,463],{"type":42,"tag":360,"props":379,"children":380},{},[381,391],{"type":42,"tag":382,"props":383,"children":384},"td",{},[385],{"type":42,"tag":72,"props":386,"children":388},{"className":387},[],[389],{"type":48,"value":390},"https:\u002F\u002Fappleid.apple.com\u002F.well-known\u002Fopenid-configuration",{"type":42,"tag":382,"props":392,"children":393},{},[394],{"type":42,"tag":72,"props":395,"children":397},{"className":396},[],[398],{"type":48,"value":399},"$APPLE_EMULATOR_URL\u002F.well-known\u002Fopenid-configuration",{"type":42,"tag":360,"props":401,"children":402},{},[403,412],{"type":42,"tag":382,"props":404,"children":405},{},[406],{"type":42,"tag":72,"props":407,"children":409},{"className":408},[],[410],{"type":48,"value":411},"https:\u002F\u002Fappleid.apple.com\u002Fauth\u002Fauthorize",{"type":42,"tag":382,"props":413,"children":414},{},[415],{"type":42,"tag":72,"props":416,"children":418},{"className":417},[],[419],{"type":48,"value":420},"$APPLE_EMULATOR_URL\u002Fauth\u002Fauthorize",{"type":42,"tag":360,"props":422,"children":423},{},[424,433],{"type":42,"tag":382,"props":425,"children":426},{},[427],{"type":42,"tag":72,"props":428,"children":430},{"className":429},[],[431],{"type":48,"value":432},"https:\u002F\u002Fappleid.apple.com\u002Fauth\u002Ftoken",{"type":42,"tag":382,"props":434,"children":435},{},[436],{"type":42,"tag":72,"props":437,"children":439},{"className":438},[],[440],{"type":48,"value":441},"$APPLE_EMULATOR_URL\u002Fauth\u002Ftoken",{"type":42,"tag":360,"props":443,"children":444},{},[445,454],{"type":42,"tag":382,"props":446,"children":447},{},[448],{"type":42,"tag":72,"props":449,"children":451},{"className":450},[],[452],{"type":48,"value":453},"https:\u002F\u002Fappleid.apple.com\u002Fauth\u002Fkeys",{"type":42,"tag":382,"props":455,"children":456},{},[457],{"type":42,"tag":72,"props":458,"children":460},{"className":459},[],[461],{"type":48,"value":462},"$APPLE_EMULATOR_URL\u002Fauth\u002Fkeys",{"type":42,"tag":360,"props":464,"children":465},{},[466,475],{"type":42,"tag":382,"props":467,"children":468},{},[469],{"type":42,"tag":72,"props":470,"children":472},{"className":471},[],[473],{"type":48,"value":474},"https:\u002F\u002Fappleid.apple.com\u002Fauth\u002Frevoke",{"type":42,"tag":382,"props":476,"children":477},{},[478],{"type":42,"tag":72,"props":479,"children":481},{"className":480},[],[482],{"type":48,"value":483},"$APPLE_EMULATOR_URL\u002Fauth\u002Frevoke",{"type":42,"tag":315,"props":485,"children":487},{"id":486},"authjs-nextauthjs",[488],{"type":48,"value":489},"Auth.js \u002F NextAuth.js",{"type":42,"tag":64,"props":491,"children":493},{"className":148,"code":492,"language":150,"meta":69,"style":69},"import Apple from '@auth\u002Fcore\u002Fproviders\u002Fapple'\n\nApple({\n  clientId: process.env.APPLE_CLIENT_ID,\n  clientSecret: process.env.APPLE_CLIENT_SECRET,\n  authorization: {\n    url: `${process.env.APPLE_EMULATOR_URL}\u002Fauth\u002Fauthorize`,\n    params: { scope: 'openid email name', response_mode: 'form_post' },\n  },\n  token: {\n    url: `${process.env.APPLE_EMULATOR_URL}\u002Fauth\u002Ftoken`,\n  },\n  jwks_endpoint: `${process.env.APPLE_EMULATOR_URL}\u002Fauth\u002Fkeys`,\n})\n",[494],{"type":42,"tag":72,"props":495,"children":496},{"__ignoreMap":69},[497,527,534,550,591,628,646,704,774,783,800,853,861,915],{"type":42,"tag":76,"props":498,"children":499},{"class":78,"line":79},[500,504,509,514,518,523],{"type":42,"tag":76,"props":501,"children":502},{"style":160},[503],{"type":48,"value":163},{"type":42,"tag":76,"props":505,"children":506},{"style":172},[507],{"type":48,"value":508}," Apple ",{"type":42,"tag":76,"props":510,"children":511},{"style":160},[512],{"type":48,"value":513},"from",{"type":42,"tag":76,"props":515,"children":516},{"style":166},[517],{"type":48,"value":190},{"type":42,"tag":76,"props":519,"children":520},{"style":99},[521],{"type":48,"value":522},"@auth\u002Fcore\u002Fproviders\u002Fapple",{"type":42,"tag":76,"props":524,"children":525},{"style":166},[526],{"type":48,"value":200},{"type":42,"tag":76,"props":528,"children":529},{"class":78,"line":89},[530],{"type":42,"tag":76,"props":531,"children":532},{"emptyLinePlaceholder":119},[533],{"type":48,"value":122},{"type":42,"tag":76,"props":535,"children":536},{"class":78,"line":115},[537,541,545],{"type":42,"tag":76,"props":538,"children":539},{"style":234},[540],{"type":48,"value":20},{"type":42,"tag":76,"props":542,"children":543},{"style":172},[544],{"type":48,"value":241},{"type":42,"tag":76,"props":546,"children":547},{"style":166},[548],{"type":48,"value":549},"{\n",{"type":42,"tag":76,"props":551,"children":552},{"class":78,"line":125},[553,558,562,567,572,577,581,586],{"type":42,"tag":76,"props":554,"children":555},{"style":249},[556],{"type":48,"value":557},"  clientId",{"type":42,"tag":76,"props":559,"children":560},{"style":166},[561],{"type":48,"value":257},{"type":42,"tag":76,"props":563,"children":564},{"style":172},[565],{"type":48,"value":566}," process",{"type":42,"tag":76,"props":568,"children":569},{"style":166},[570],{"type":48,"value":571},".",{"type":42,"tag":76,"props":573,"children":574},{"style":172},[575],{"type":48,"value":576},"env",{"type":42,"tag":76,"props":578,"children":579},{"style":166},[580],{"type":48,"value":571},{"type":42,"tag":76,"props":582,"children":583},{"style":172},[584],{"type":48,"value":585},"APPLE_CLIENT_ID",{"type":42,"tag":76,"props":587,"children":588},{"style":166},[589],{"type":48,"value":590},",\n",{"type":42,"tag":76,"props":592,"children":593},{"class":78,"line":134},[594,599,603,607,611,615,619,624],{"type":42,"tag":76,"props":595,"children":596},{"style":249},[597],{"type":48,"value":598},"  clientSecret",{"type":42,"tag":76,"props":600,"children":601},{"style":166},[602],{"type":48,"value":257},{"type":42,"tag":76,"props":604,"children":605},{"style":172},[606],{"type":48,"value":566},{"type":42,"tag":76,"props":608,"children":609},{"style":166},[610],{"type":48,"value":571},{"type":42,"tag":76,"props":612,"children":613},{"style":172},[614],{"type":48,"value":576},{"type":42,"tag":76,"props":616,"children":617},{"style":166},[618],{"type":48,"value":571},{"type":42,"tag":76,"props":620,"children":621},{"style":172},[622],{"type":48,"value":623},"APPLE_CLIENT_SECRET",{"type":42,"tag":76,"props":625,"children":626},{"style":166},[627],{"type":48,"value":590},{"type":42,"tag":76,"props":629,"children":631},{"class":78,"line":630},6,[632,637,641],{"type":42,"tag":76,"props":633,"children":634},{"style":249},[635],{"type":48,"value":636},"  authorization",{"type":42,"tag":76,"props":638,"children":639},{"style":166},[640],{"type":48,"value":257},{"type":42,"tag":76,"props":642,"children":643},{"style":166},[644],{"type":48,"value":645}," {\n",{"type":42,"tag":76,"props":647,"children":649},{"class":78,"line":648},7,[650,655,659,664,669,673,677,681,685,690,695,700],{"type":42,"tag":76,"props":651,"children":652},{"style":249},[653],{"type":48,"value":654},"    url",{"type":42,"tag":76,"props":656,"children":657},{"style":166},[658],{"type":48,"value":257},{"type":42,"tag":76,"props":660,"children":661},{"style":166},[662],{"type":48,"value":663}," `${",{"type":42,"tag":76,"props":665,"children":666},{"style":172},[667],{"type":48,"value":668},"process",{"type":42,"tag":76,"props":670,"children":671},{"style":166},[672],{"type":48,"value":571},{"type":42,"tag":76,"props":674,"children":675},{"style":172},[676],{"type":48,"value":576},{"type":42,"tag":76,"props":678,"children":679},{"style":166},[680],{"type":48,"value":571},{"type":42,"tag":76,"props":682,"children":683},{"style":172},[684],{"type":48,"value":335},{"type":42,"tag":76,"props":686,"children":687},{"style":166},[688],{"type":48,"value":689},"}",{"type":42,"tag":76,"props":691,"children":692},{"style":99},[693],{"type":48,"value":694},"\u002Fauth\u002Fauthorize",{"type":42,"tag":76,"props":696,"children":697},{"style":166},[698],{"type":48,"value":699},"`",{"type":42,"tag":76,"props":701,"children":702},{"style":166},[703],{"type":48,"value":590},{"type":42,"tag":76,"props":705,"children":707},{"class":78,"line":706},8,[708,713,717,721,726,730,734,739,743,747,752,756,760,765,769],{"type":42,"tag":76,"props":709,"children":710},{"style":249},[711],{"type":48,"value":712},"    params",{"type":42,"tag":76,"props":714,"children":715},{"style":166},[716],{"type":48,"value":257},{"type":42,"tag":76,"props":718,"children":719},{"style":166},[720],{"type":48,"value":169},{"type":42,"tag":76,"props":722,"children":723},{"style":249},[724],{"type":48,"value":725}," scope",{"type":42,"tag":76,"props":727,"children":728},{"style":166},[729],{"type":48,"value":257},{"type":42,"tag":76,"props":731,"children":732},{"style":166},[733],{"type":48,"value":190},{"type":42,"tag":76,"props":735,"children":736},{"style":99},[737],{"type":48,"value":738},"openid email name",{"type":42,"tag":76,"props":740,"children":741},{"style":166},[742],{"type":48,"value":270},{"type":42,"tag":76,"props":744,"children":745},{"style":166},[746],{"type":48,"value":275},{"type":42,"tag":76,"props":748,"children":749},{"style":249},[750],{"type":48,"value":751}," response_mode",{"type":42,"tag":76,"props":753,"children":754},{"style":166},[755],{"type":48,"value":257},{"type":42,"tag":76,"props":757,"children":758},{"style":166},[759],{"type":48,"value":190},{"type":42,"tag":76,"props":761,"children":762},{"style":99},[763],{"type":48,"value":764},"form_post",{"type":42,"tag":76,"props":766,"children":767},{"style":166},[768],{"type":48,"value":270},{"type":42,"tag":76,"props":770,"children":771},{"style":166},[772],{"type":48,"value":773}," },\n",{"type":42,"tag":76,"props":775,"children":777},{"class":78,"line":776},9,[778],{"type":42,"tag":76,"props":779,"children":780},{"style":166},[781],{"type":48,"value":782},"  },\n",{"type":42,"tag":76,"props":784,"children":786},{"class":78,"line":785},10,[787,792,796],{"type":42,"tag":76,"props":788,"children":789},{"style":249},[790],{"type":48,"value":791},"  token",{"type":42,"tag":76,"props":793,"children":794},{"style":166},[795],{"type":48,"value":257},{"type":42,"tag":76,"props":797,"children":798},{"style":166},[799],{"type":48,"value":645},{"type":42,"tag":76,"props":801,"children":803},{"class":78,"line":802},11,[804,808,812,816,820,824,828,832,836,840,845,849],{"type":42,"tag":76,"props":805,"children":806},{"style":249},[807],{"type":48,"value":654},{"type":42,"tag":76,"props":809,"children":810},{"style":166},[811],{"type":48,"value":257},{"type":42,"tag":76,"props":813,"children":814},{"style":166},[815],{"type":48,"value":663},{"type":42,"tag":76,"props":817,"children":818},{"style":172},[819],{"type":48,"value":668},{"type":42,"tag":76,"props":821,"children":822},{"style":166},[823],{"type":48,"value":571},{"type":42,"tag":76,"props":825,"children":826},{"style":172},[827],{"type":48,"value":576},{"type":42,"tag":76,"props":829,"children":830},{"style":166},[831],{"type":48,"value":571},{"type":42,"tag":76,"props":833,"children":834},{"style":172},[835],{"type":48,"value":335},{"type":42,"tag":76,"props":837,"children":838},{"style":166},[839],{"type":48,"value":689},{"type":42,"tag":76,"props":841,"children":842},{"style":99},[843],{"type":48,"value":844},"\u002Fauth\u002Ftoken",{"type":42,"tag":76,"props":846,"children":847},{"style":166},[848],{"type":48,"value":699},{"type":42,"tag":76,"props":850,"children":851},{"style":166},[852],{"type":48,"value":590},{"type":42,"tag":76,"props":854,"children":856},{"class":78,"line":855},12,[857],{"type":42,"tag":76,"props":858,"children":859},{"style":166},[860],{"type":48,"value":782},{"type":42,"tag":76,"props":862,"children":864},{"class":78,"line":863},13,[865,870,874,878,882,886,890,894,898,902,907,911],{"type":42,"tag":76,"props":866,"children":867},{"style":249},[868],{"type":48,"value":869},"  jwks_endpoint",{"type":42,"tag":76,"props":871,"children":872},{"style":166},[873],{"type":48,"value":257},{"type":42,"tag":76,"props":875,"children":876},{"style":166},[877],{"type":48,"value":663},{"type":42,"tag":76,"props":879,"children":880},{"style":172},[881],{"type":48,"value":668},{"type":42,"tag":76,"props":883,"children":884},{"style":166},[885],{"type":48,"value":571},{"type":42,"tag":76,"props":887,"children":888},{"style":172},[889],{"type":48,"value":576},{"type":42,"tag":76,"props":891,"children":892},{"style":166},[893],{"type":48,"value":571},{"type":42,"tag":76,"props":895,"children":896},{"style":172},[897],{"type":48,"value":335},{"type":42,"tag":76,"props":899,"children":900},{"style":166},[901],{"type":48,"value":689},{"type":42,"tag":76,"props":903,"children":904},{"style":99},[905],{"type":48,"value":906},"\u002Fauth\u002Fkeys",{"type":42,"tag":76,"props":908,"children":909},{"style":166},[910],{"type":48,"value":699},{"type":42,"tag":76,"props":912,"children":913},{"style":166},[914],{"type":48,"value":590},{"type":42,"tag":76,"props":916,"children":918},{"class":78,"line":917},14,[919,923],{"type":42,"tag":76,"props":920,"children":921},{"style":166},[922],{"type":48,"value":689},{"type":42,"tag":76,"props":924,"children":925},{"style":172},[926],{"type":48,"value":299},{"type":42,"tag":315,"props":928,"children":930},{"id":929},"passportjs",[931],{"type":48,"value":932},"Passport.js",{"type":42,"tag":64,"props":934,"children":936},{"className":148,"code":935,"language":150,"meta":69,"style":69},"import { Strategy as AppleStrategy } from 'passport-apple'\n\nconst APPLE_URL = process.env.APPLE_EMULATOR_URL ?? 'https:\u002F\u002Fappleid.apple.com'\n\nnew AppleStrategy({\n  clientID: process.env.APPLE_CLIENT_ID,\n  teamID: process.env.APPLE_TEAM_ID,\n  keyID: process.env.APPLE_KEY_ID,\n  callbackURL: 'http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple',\n  authorizationURL: `${APPLE_URL}\u002Fauth\u002Fauthorize`,\n  tokenURL: `${APPLE_URL}\u002Fauth\u002Ftoken`,\n}, verifyCallback)\n",[937],{"type":42,"tag":72,"props":938,"children":939},{"__ignoreMap":69},[940,987,994,1049,1056,1076,1112,1149,1186,1215,1252,1288],{"type":42,"tag":76,"props":941,"children":942},{"class":78,"line":79},[943,947,951,956,961,966,970,974,978,983],{"type":42,"tag":76,"props":944,"children":945},{"style":160},[946],{"type":48,"value":163},{"type":42,"tag":76,"props":948,"children":949},{"style":166},[950],{"type":48,"value":169},{"type":42,"tag":76,"props":952,"children":953},{"style":172},[954],{"type":48,"value":955}," Strategy",{"type":42,"tag":76,"props":957,"children":958},{"style":160},[959],{"type":48,"value":960}," as",{"type":42,"tag":76,"props":962,"children":963},{"style":172},[964],{"type":48,"value":965}," AppleStrategy",{"type":42,"tag":76,"props":967,"children":968},{"style":166},[969],{"type":48,"value":180},{"type":42,"tag":76,"props":971,"children":972},{"style":160},[973],{"type":48,"value":185},{"type":42,"tag":76,"props":975,"children":976},{"style":166},[977],{"type":48,"value":190},{"type":42,"tag":76,"props":979,"children":980},{"style":99},[981],{"type":48,"value":982},"passport-apple",{"type":42,"tag":76,"props":984,"children":985},{"style":166},[986],{"type":48,"value":200},{"type":42,"tag":76,"props":988,"children":989},{"class":78,"line":89},[990],{"type":42,"tag":76,"props":991,"children":992},{"emptyLinePlaceholder":119},[993],{"type":48,"value":122},{"type":42,"tag":76,"props":995,"children":996},{"class":78,"line":115},[997,1001,1006,1010,1014,1018,1022,1026,1031,1036,1040,1045],{"type":42,"tag":76,"props":998,"children":999},{"style":213},[1000],{"type":48,"value":216},{"type":42,"tag":76,"props":1002,"children":1003},{"style":172},[1004],{"type":48,"value":1005}," APPLE_URL ",{"type":42,"tag":76,"props":1007,"children":1008},{"style":166},[1009],{"type":48,"value":226},{"type":42,"tag":76,"props":1011,"children":1012},{"style":172},[1013],{"type":48,"value":566},{"type":42,"tag":76,"props":1015,"children":1016},{"style":166},[1017],{"type":48,"value":571},{"type":42,"tag":76,"props":1019,"children":1020},{"style":172},[1021],{"type":48,"value":576},{"type":42,"tag":76,"props":1023,"children":1024},{"style":166},[1025],{"type":48,"value":571},{"type":42,"tag":76,"props":1027,"children":1028},{"style":172},[1029],{"type":48,"value":1030},"APPLE_EMULATOR_URL ",{"type":42,"tag":76,"props":1032,"children":1033},{"style":166},[1034],{"type":48,"value":1035},"??",{"type":42,"tag":76,"props":1037,"children":1038},{"style":166},[1039],{"type":48,"value":190},{"type":42,"tag":76,"props":1041,"children":1042},{"style":99},[1043],{"type":48,"value":1044},"https:\u002F\u002Fappleid.apple.com",{"type":42,"tag":76,"props":1046,"children":1047},{"style":166},[1048],{"type":48,"value":200},{"type":42,"tag":76,"props":1050,"children":1051},{"class":78,"line":125},[1052],{"type":42,"tag":76,"props":1053,"children":1054},{"emptyLinePlaceholder":119},[1055],{"type":48,"value":122},{"type":42,"tag":76,"props":1057,"children":1058},{"class":78,"line":134},[1059,1064,1068,1072],{"type":42,"tag":76,"props":1060,"children":1061},{"style":166},[1062],{"type":48,"value":1063},"new",{"type":42,"tag":76,"props":1065,"children":1066},{"style":234},[1067],{"type":48,"value":965},{"type":42,"tag":76,"props":1069,"children":1070},{"style":172},[1071],{"type":48,"value":241},{"type":42,"tag":76,"props":1073,"children":1074},{"style":166},[1075],{"type":48,"value":549},{"type":42,"tag":76,"props":1077,"children":1078},{"class":78,"line":630},[1079,1084,1088,1092,1096,1100,1104,1108],{"type":42,"tag":76,"props":1080,"children":1081},{"style":249},[1082],{"type":48,"value":1083},"  clientID",{"type":42,"tag":76,"props":1085,"children":1086},{"style":166},[1087],{"type":48,"value":257},{"type":42,"tag":76,"props":1089,"children":1090},{"style":172},[1091],{"type":48,"value":566},{"type":42,"tag":76,"props":1093,"children":1094},{"style":166},[1095],{"type":48,"value":571},{"type":42,"tag":76,"props":1097,"children":1098},{"style":172},[1099],{"type":48,"value":576},{"type":42,"tag":76,"props":1101,"children":1102},{"style":166},[1103],{"type":48,"value":571},{"type":42,"tag":76,"props":1105,"children":1106},{"style":172},[1107],{"type":48,"value":585},{"type":42,"tag":76,"props":1109,"children":1110},{"style":166},[1111],{"type":48,"value":590},{"type":42,"tag":76,"props":1113,"children":1114},{"class":78,"line":648},[1115,1120,1124,1128,1132,1136,1140,1145],{"type":42,"tag":76,"props":1116,"children":1117},{"style":249},[1118],{"type":48,"value":1119},"  teamID",{"type":42,"tag":76,"props":1121,"children":1122},{"style":166},[1123],{"type":48,"value":257},{"type":42,"tag":76,"props":1125,"children":1126},{"style":172},[1127],{"type":48,"value":566},{"type":42,"tag":76,"props":1129,"children":1130},{"style":166},[1131],{"type":48,"value":571},{"type":42,"tag":76,"props":1133,"children":1134},{"style":172},[1135],{"type":48,"value":576},{"type":42,"tag":76,"props":1137,"children":1138},{"style":166},[1139],{"type":48,"value":571},{"type":42,"tag":76,"props":1141,"children":1142},{"style":172},[1143],{"type":48,"value":1144},"APPLE_TEAM_ID",{"type":42,"tag":76,"props":1146,"children":1147},{"style":166},[1148],{"type":48,"value":590},{"type":42,"tag":76,"props":1150,"children":1151},{"class":78,"line":706},[1152,1157,1161,1165,1169,1173,1177,1182],{"type":42,"tag":76,"props":1153,"children":1154},{"style":249},[1155],{"type":48,"value":1156},"  keyID",{"type":42,"tag":76,"props":1158,"children":1159},{"style":166},[1160],{"type":48,"value":257},{"type":42,"tag":76,"props":1162,"children":1163},{"style":172},[1164],{"type":48,"value":566},{"type":42,"tag":76,"props":1166,"children":1167},{"style":166},[1168],{"type":48,"value":571},{"type":42,"tag":76,"props":1170,"children":1171},{"style":172},[1172],{"type":48,"value":576},{"type":42,"tag":76,"props":1174,"children":1175},{"style":166},[1176],{"type":48,"value":571},{"type":42,"tag":76,"props":1178,"children":1179},{"style":172},[1180],{"type":48,"value":1181},"APPLE_KEY_ID",{"type":42,"tag":76,"props":1183,"children":1184},{"style":166},[1185],{"type":48,"value":590},{"type":42,"tag":76,"props":1187,"children":1188},{"class":78,"line":776},[1189,1194,1198,1202,1207,1211],{"type":42,"tag":76,"props":1190,"children":1191},{"style":249},[1192],{"type":48,"value":1193},"  callbackURL",{"type":42,"tag":76,"props":1195,"children":1196},{"style":166},[1197],{"type":48,"value":257},{"type":42,"tag":76,"props":1199,"children":1200},{"style":166},[1201],{"type":48,"value":190},{"type":42,"tag":76,"props":1203,"children":1204},{"style":99},[1205],{"type":48,"value":1206},"http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple",{"type":42,"tag":76,"props":1208,"children":1209},{"style":166},[1210],{"type":48,"value":270},{"type":42,"tag":76,"props":1212,"children":1213},{"style":166},[1214],{"type":48,"value":590},{"type":42,"tag":76,"props":1216,"children":1217},{"class":78,"line":785},[1218,1223,1227,1231,1236,1240,1244,1248],{"type":42,"tag":76,"props":1219,"children":1220},{"style":249},[1221],{"type":48,"value":1222},"  authorizationURL",{"type":42,"tag":76,"props":1224,"children":1225},{"style":166},[1226],{"type":48,"value":257},{"type":42,"tag":76,"props":1228,"children":1229},{"style":166},[1230],{"type":48,"value":663},{"type":42,"tag":76,"props":1232,"children":1233},{"style":172},[1234],{"type":48,"value":1235},"APPLE_URL",{"type":42,"tag":76,"props":1237,"children":1238},{"style":166},[1239],{"type":48,"value":689},{"type":42,"tag":76,"props":1241,"children":1242},{"style":99},[1243],{"type":48,"value":694},{"type":42,"tag":76,"props":1245,"children":1246},{"style":166},[1247],{"type":48,"value":699},{"type":42,"tag":76,"props":1249,"children":1250},{"style":166},[1251],{"type":48,"value":590},{"type":42,"tag":76,"props":1253,"children":1254},{"class":78,"line":802},[1255,1260,1264,1268,1272,1276,1280,1284],{"type":42,"tag":76,"props":1256,"children":1257},{"style":249},[1258],{"type":48,"value":1259},"  tokenURL",{"type":42,"tag":76,"props":1261,"children":1262},{"style":166},[1263],{"type":48,"value":257},{"type":42,"tag":76,"props":1265,"children":1266},{"style":166},[1267],{"type":48,"value":663},{"type":42,"tag":76,"props":1269,"children":1270},{"style":172},[1271],{"type":48,"value":1235},{"type":42,"tag":76,"props":1273,"children":1274},{"style":166},[1275],{"type":48,"value":689},{"type":42,"tag":76,"props":1277,"children":1278},{"style":99},[1279],{"type":48,"value":844},{"type":42,"tag":76,"props":1281,"children":1282},{"style":166},[1283],{"type":48,"value":699},{"type":42,"tag":76,"props":1285,"children":1286},{"style":166},[1287],{"type":48,"value":590},{"type":42,"tag":76,"props":1289,"children":1290},{"class":78,"line":855},[1291,1296],{"type":42,"tag":76,"props":1292,"children":1293},{"style":166},[1294],{"type":48,"value":1295},"},",{"type":42,"tag":76,"props":1297,"children":1298},{"style":172},[1299],{"type":48,"value":1300}," verifyCallback)\n",{"type":42,"tag":57,"props":1302,"children":1304},{"id":1303},"seed-config",[1305],{"type":48,"value":1306},"Seed Config",{"type":42,"tag":64,"props":1308,"children":1312},{"className":1309,"code":1310,"language":1311,"meta":69,"style":69},"language-yaml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","apple:\n  users:\n    - email: testuser@icloud.com\n      name: Test User\n      given_name: Test\n      family_name: User\n    - email: private@example.com\n      name: Private User\n      is_private_email: true\n  oauth_clients:\n    - client_id: com.example.app\n      team_id: TEAM001\n      name: My Apple App\n      redirect_uris:\n        - http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple\n","yaml",[1313],{"type":42,"tag":72,"props":1314,"children":1315},{"__ignoreMap":69},[1316,1328,1340,1362,1379,1396,1413,1433,1449,1467,1479,1500,1517,1533,1545],{"type":42,"tag":76,"props":1317,"children":1318},{"class":78,"line":79},[1319,1323],{"type":42,"tag":76,"props":1320,"children":1321},{"style":249},[1322],{"type":48,"value":4},{"type":42,"tag":76,"props":1324,"children":1325},{"style":166},[1326],{"type":48,"value":1327},":\n",{"type":42,"tag":76,"props":1329,"children":1330},{"class":78,"line":89},[1331,1336],{"type":42,"tag":76,"props":1332,"children":1333},{"style":249},[1334],{"type":48,"value":1335},"  users",{"type":42,"tag":76,"props":1337,"children":1338},{"style":166},[1339],{"type":48,"value":1327},{"type":42,"tag":76,"props":1341,"children":1342},{"class":78,"line":115},[1343,1348,1353,1357],{"type":42,"tag":76,"props":1344,"children":1345},{"style":166},[1346],{"type":48,"value":1347},"    -",{"type":42,"tag":76,"props":1349,"children":1350},{"style":249},[1351],{"type":48,"value":1352}," email",{"type":42,"tag":76,"props":1354,"children":1355},{"style":166},[1356],{"type":48,"value":257},{"type":42,"tag":76,"props":1358,"children":1359},{"style":99},[1360],{"type":48,"value":1361}," testuser@icloud.com\n",{"type":42,"tag":76,"props":1363,"children":1364},{"class":78,"line":125},[1365,1370,1374],{"type":42,"tag":76,"props":1366,"children":1367},{"style":249},[1368],{"type":48,"value":1369},"      name",{"type":42,"tag":76,"props":1371,"children":1372},{"style":166},[1373],{"type":48,"value":257},{"type":42,"tag":76,"props":1375,"children":1376},{"style":99},[1377],{"type":48,"value":1378}," Test User\n",{"type":42,"tag":76,"props":1380,"children":1381},{"class":78,"line":134},[1382,1387,1391],{"type":42,"tag":76,"props":1383,"children":1384},{"style":249},[1385],{"type":48,"value":1386},"      given_name",{"type":42,"tag":76,"props":1388,"children":1389},{"style":166},[1390],{"type":48,"value":257},{"type":42,"tag":76,"props":1392,"children":1393},{"style":99},[1394],{"type":48,"value":1395}," Test\n",{"type":42,"tag":76,"props":1397,"children":1398},{"class":78,"line":630},[1399,1404,1408],{"type":42,"tag":76,"props":1400,"children":1401},{"style":249},[1402],{"type":48,"value":1403},"      family_name",{"type":42,"tag":76,"props":1405,"children":1406},{"style":166},[1407],{"type":48,"value":257},{"type":42,"tag":76,"props":1409,"children":1410},{"style":99},[1411],{"type":48,"value":1412}," User\n",{"type":42,"tag":76,"props":1414,"children":1415},{"class":78,"line":648},[1416,1420,1424,1428],{"type":42,"tag":76,"props":1417,"children":1418},{"style":166},[1419],{"type":48,"value":1347},{"type":42,"tag":76,"props":1421,"children":1422},{"style":249},[1423],{"type":48,"value":1352},{"type":42,"tag":76,"props":1425,"children":1426},{"style":166},[1427],{"type":48,"value":257},{"type":42,"tag":76,"props":1429,"children":1430},{"style":99},[1431],{"type":48,"value":1432}," private@example.com\n",{"type":42,"tag":76,"props":1434,"children":1435},{"class":78,"line":706},[1436,1440,1444],{"type":42,"tag":76,"props":1437,"children":1438},{"style":249},[1439],{"type":48,"value":1369},{"type":42,"tag":76,"props":1441,"children":1442},{"style":166},[1443],{"type":48,"value":257},{"type":42,"tag":76,"props":1445,"children":1446},{"style":99},[1447],{"type":48,"value":1448}," Private User\n",{"type":42,"tag":76,"props":1450,"children":1451},{"class":78,"line":776},[1452,1457,1461],{"type":42,"tag":76,"props":1453,"children":1454},{"style":249},[1455],{"type":48,"value":1456},"      is_private_email",{"type":42,"tag":76,"props":1458,"children":1459},{"style":166},[1460],{"type":48,"value":257},{"type":42,"tag":76,"props":1462,"children":1464},{"style":1463},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[1465],{"type":48,"value":1466}," true\n",{"type":42,"tag":76,"props":1468,"children":1469},{"class":78,"line":785},[1470,1475],{"type":42,"tag":76,"props":1471,"children":1472},{"style":249},[1473],{"type":48,"value":1474},"  oauth_clients",{"type":42,"tag":76,"props":1476,"children":1477},{"style":166},[1478],{"type":48,"value":1327},{"type":42,"tag":76,"props":1480,"children":1481},{"class":78,"line":802},[1482,1486,1491,1495],{"type":42,"tag":76,"props":1483,"children":1484},{"style":166},[1485],{"type":48,"value":1347},{"type":42,"tag":76,"props":1487,"children":1488},{"style":249},[1489],{"type":48,"value":1490}," client_id",{"type":42,"tag":76,"props":1492,"children":1493},{"style":166},[1494],{"type":48,"value":257},{"type":42,"tag":76,"props":1496,"children":1497},{"style":99},[1498],{"type":48,"value":1499}," com.example.app\n",{"type":42,"tag":76,"props":1501,"children":1502},{"class":78,"line":855},[1503,1508,1512],{"type":42,"tag":76,"props":1504,"children":1505},{"style":249},[1506],{"type":48,"value":1507},"      team_id",{"type":42,"tag":76,"props":1509,"children":1510},{"style":166},[1511],{"type":48,"value":257},{"type":42,"tag":76,"props":1513,"children":1514},{"style":99},[1515],{"type":48,"value":1516}," TEAM001\n",{"type":42,"tag":76,"props":1518,"children":1519},{"class":78,"line":863},[1520,1524,1528],{"type":42,"tag":76,"props":1521,"children":1522},{"style":249},[1523],{"type":48,"value":1369},{"type":42,"tag":76,"props":1525,"children":1526},{"style":166},[1527],{"type":48,"value":257},{"type":42,"tag":76,"props":1529,"children":1530},{"style":99},[1531],{"type":48,"value":1532}," My Apple App\n",{"type":42,"tag":76,"props":1534,"children":1535},{"class":78,"line":917},[1536,1541],{"type":42,"tag":76,"props":1537,"children":1538},{"style":249},[1539],{"type":48,"value":1540},"      redirect_uris",{"type":42,"tag":76,"props":1542,"children":1543},{"style":166},[1544],{"type":48,"value":1327},{"type":42,"tag":76,"props":1546,"children":1548},{"class":78,"line":1547},15,[1549,1554],{"type":42,"tag":76,"props":1550,"children":1551},{"style":166},[1552],{"type":48,"value":1553},"        -",{"type":42,"tag":76,"props":1555,"children":1556},{"style":99},[1557],{"type":48,"value":1558}," http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple\n",{"type":42,"tag":51,"props":1560,"children":1561},{},[1562,1564,1570,1572,1577,1579,1585],{"type":48,"value":1563},"When no OAuth clients are configured, the emulator accepts any ",{"type":42,"tag":72,"props":1565,"children":1567},{"className":1566},[],[1568],{"type":48,"value":1569},"client_id",{"type":48,"value":1571},". With clients configured, strict validation is enforced for ",{"type":42,"tag":72,"props":1573,"children":1575},{"className":1574},[],[1576],{"type":48,"value":1569},{"type":48,"value":1578}," and ",{"type":42,"tag":72,"props":1580,"children":1582},{"className":1581},[],[1583],{"type":48,"value":1584},"redirect_uri",{"type":48,"value":571},{"type":42,"tag":51,"props":1587,"children":1588},{},[1589,1591,1597,1599,1605,1607,1613],{"type":48,"value":1590},"Users with ",{"type":42,"tag":72,"props":1592,"children":1594},{"className":1593},[],[1595],{"type":48,"value":1596},"is_private_email: true",{"type":48,"value":1598}," get a generated ",{"type":42,"tag":72,"props":1600,"children":1602},{"className":1601},[],[1603],{"type":48,"value":1604},"@privaterelay.appleid.com",{"type":48,"value":1606}," email in the ",{"type":42,"tag":72,"props":1608,"children":1610},{"className":1609},[],[1611],{"type":48,"value":1612},"id_token",{"type":48,"value":1614}," instead of their real email.",{"type":42,"tag":57,"props":1616,"children":1618},{"id":1617},"api-endpoints",[1619],{"type":48,"value":1620},"API Endpoints",{"type":42,"tag":315,"props":1622,"children":1624},{"id":1623},"oidc-discovery",[1625],{"type":48,"value":1626},"OIDC Discovery",{"type":42,"tag":64,"props":1628,"children":1630},{"className":66,"code":1629,"language":68,"meta":69,"style":69},"curl http:\u002F\u002Flocalhost:4004\u002F.well-known\u002Fopenid-configuration\n",[1631],{"type":42,"tag":72,"props":1632,"children":1633},{"__ignoreMap":69},[1634],{"type":42,"tag":76,"props":1635,"children":1636},{"class":78,"line":79},[1637,1642],{"type":42,"tag":76,"props":1638,"children":1639},{"style":93},[1640],{"type":48,"value":1641},"curl",{"type":42,"tag":76,"props":1643,"children":1644},{"style":99},[1645],{"type":48,"value":1646}," http:\u002F\u002Flocalhost:4004\u002F.well-known\u002Fopenid-configuration\n",{"type":42,"tag":51,"props":1648,"children":1649},{},[1650],{"type":48,"value":1651},"Returns the standard OIDC discovery document with all endpoints pointing to the emulator:",{"type":42,"tag":64,"props":1653,"children":1657},{"className":1654,"code":1655,"language":1656,"meta":69,"style":69},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"issuer\": \"http:\u002F\u002Flocalhost:4004\",\n  \"authorization_endpoint\": \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fauthorize\",\n  \"token_endpoint\": \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Ftoken\",\n  \"jwks_uri\": \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fkeys\",\n  \"revocation_endpoint\": \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Frevoke\",\n  \"response_types_supported\": [\"code\"],\n  \"subject_types_supported\": [\"pairwise\"],\n  \"id_token_signing_alg_values_supported\": [\"RS256\"],\n  \"scopes_supported\": [\"openid\", \"email\", \"name\"],\n  \"token_endpoint_auth_methods_supported\": [\"client_secret_post\"],\n  \"response_modes_supported\": [\"query\", \"fragment\", \"form_post\"]\n}\n","json",[1658],{"type":42,"tag":72,"props":1659,"children":1660},{"__ignoreMap":69},[1661,1668,1708,1745,1782,1819,1856,1898,1939,1980,2055,2096,2171],{"type":42,"tag":76,"props":1662,"children":1663},{"class":78,"line":79},[1664],{"type":42,"tag":76,"props":1665,"children":1666},{"style":166},[1667],{"type":48,"value":549},{"type":42,"tag":76,"props":1669,"children":1670},{"class":78,"line":89},[1671,1676,1681,1686,1690,1695,1700,1704],{"type":42,"tag":76,"props":1672,"children":1673},{"style":166},[1674],{"type":48,"value":1675},"  \"",{"type":42,"tag":76,"props":1677,"children":1678},{"style":213},[1679],{"type":48,"value":1680},"issuer",{"type":42,"tag":76,"props":1682,"children":1683},{"style":166},[1684],{"type":48,"value":1685},"\"",{"type":42,"tag":76,"props":1687,"children":1688},{"style":166},[1689],{"type":48,"value":257},{"type":42,"tag":76,"props":1691,"children":1692},{"style":166},[1693],{"type":48,"value":1694}," \"",{"type":42,"tag":76,"props":1696,"children":1697},{"style":99},[1698],{"type":48,"value":1699},"http:\u002F\u002Flocalhost:4004",{"type":42,"tag":76,"props":1701,"children":1702},{"style":166},[1703],{"type":48,"value":1685},{"type":42,"tag":76,"props":1705,"children":1706},{"style":166},[1707],{"type":48,"value":590},{"type":42,"tag":76,"props":1709,"children":1710},{"class":78,"line":115},[1711,1715,1720,1724,1728,1732,1737,1741],{"type":42,"tag":76,"props":1712,"children":1713},{"style":166},[1714],{"type":48,"value":1675},{"type":42,"tag":76,"props":1716,"children":1717},{"style":213},[1718],{"type":48,"value":1719},"authorization_endpoint",{"type":42,"tag":76,"props":1721,"children":1722},{"style":166},[1723],{"type":48,"value":1685},{"type":42,"tag":76,"props":1725,"children":1726},{"style":166},[1727],{"type":48,"value":257},{"type":42,"tag":76,"props":1729,"children":1730},{"style":166},[1731],{"type":48,"value":1694},{"type":42,"tag":76,"props":1733,"children":1734},{"style":99},[1735],{"type":48,"value":1736},"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fauthorize",{"type":42,"tag":76,"props":1738,"children":1739},{"style":166},[1740],{"type":48,"value":1685},{"type":42,"tag":76,"props":1742,"children":1743},{"style":166},[1744],{"type":48,"value":590},{"type":42,"tag":76,"props":1746,"children":1747},{"class":78,"line":125},[1748,1752,1757,1761,1765,1769,1774,1778],{"type":42,"tag":76,"props":1749,"children":1750},{"style":166},[1751],{"type":48,"value":1675},{"type":42,"tag":76,"props":1753,"children":1754},{"style":213},[1755],{"type":48,"value":1756},"token_endpoint",{"type":42,"tag":76,"props":1758,"children":1759},{"style":166},[1760],{"type":48,"value":1685},{"type":42,"tag":76,"props":1762,"children":1763},{"style":166},[1764],{"type":48,"value":257},{"type":42,"tag":76,"props":1766,"children":1767},{"style":166},[1768],{"type":48,"value":1694},{"type":42,"tag":76,"props":1770,"children":1771},{"style":99},[1772],{"type":48,"value":1773},"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Ftoken",{"type":42,"tag":76,"props":1775,"children":1776},{"style":166},[1777],{"type":48,"value":1685},{"type":42,"tag":76,"props":1779,"children":1780},{"style":166},[1781],{"type":48,"value":590},{"type":42,"tag":76,"props":1783,"children":1784},{"class":78,"line":134},[1785,1789,1794,1798,1802,1806,1811,1815],{"type":42,"tag":76,"props":1786,"children":1787},{"style":166},[1788],{"type":48,"value":1675},{"type":42,"tag":76,"props":1790,"children":1791},{"style":213},[1792],{"type":48,"value":1793},"jwks_uri",{"type":42,"tag":76,"props":1795,"children":1796},{"style":166},[1797],{"type":48,"value":1685},{"type":42,"tag":76,"props":1799,"children":1800},{"style":166},[1801],{"type":48,"value":257},{"type":42,"tag":76,"props":1803,"children":1804},{"style":166},[1805],{"type":48,"value":1694},{"type":42,"tag":76,"props":1807,"children":1808},{"style":99},[1809],{"type":48,"value":1810},"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fkeys",{"type":42,"tag":76,"props":1812,"children":1813},{"style":166},[1814],{"type":48,"value":1685},{"type":42,"tag":76,"props":1816,"children":1817},{"style":166},[1818],{"type":48,"value":590},{"type":42,"tag":76,"props":1820,"children":1821},{"class":78,"line":630},[1822,1826,1831,1835,1839,1843,1848,1852],{"type":42,"tag":76,"props":1823,"children":1824},{"style":166},[1825],{"type":48,"value":1675},{"type":42,"tag":76,"props":1827,"children":1828},{"style":213},[1829],{"type":48,"value":1830},"revocation_endpoint",{"type":42,"tag":76,"props":1832,"children":1833},{"style":166},[1834],{"type":48,"value":1685},{"type":42,"tag":76,"props":1836,"children":1837},{"style":166},[1838],{"type":48,"value":257},{"type":42,"tag":76,"props":1840,"children":1841},{"style":166},[1842],{"type":48,"value":1694},{"type":42,"tag":76,"props":1844,"children":1845},{"style":99},[1846],{"type":48,"value":1847},"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Frevoke",{"type":42,"tag":76,"props":1849,"children":1850},{"style":166},[1851],{"type":48,"value":1685},{"type":42,"tag":76,"props":1853,"children":1854},{"style":166},[1855],{"type":48,"value":590},{"type":42,"tag":76,"props":1857,"children":1858},{"class":78,"line":648},[1859,1863,1868,1872,1876,1881,1885,1889,1893],{"type":42,"tag":76,"props":1860,"children":1861},{"style":166},[1862],{"type":48,"value":1675},{"type":42,"tag":76,"props":1864,"children":1865},{"style":213},[1866],{"type":48,"value":1867},"response_types_supported",{"type":42,"tag":76,"props":1869,"children":1870},{"style":166},[1871],{"type":48,"value":1685},{"type":42,"tag":76,"props":1873,"children":1874},{"style":166},[1875],{"type":48,"value":257},{"type":42,"tag":76,"props":1877,"children":1878},{"style":166},[1879],{"type":48,"value":1880}," [",{"type":42,"tag":76,"props":1882,"children":1883},{"style":166},[1884],{"type":48,"value":1685},{"type":42,"tag":76,"props":1886,"children":1887},{"style":99},[1888],{"type":48,"value":72},{"type":42,"tag":76,"props":1890,"children":1891},{"style":166},[1892],{"type":48,"value":1685},{"type":42,"tag":76,"props":1894,"children":1895},{"style":166},[1896],{"type":48,"value":1897},"],\n",{"type":42,"tag":76,"props":1899,"children":1900},{"class":78,"line":706},[1901,1905,1910,1914,1918,1922,1926,1931,1935],{"type":42,"tag":76,"props":1902,"children":1903},{"style":166},[1904],{"type":48,"value":1675},{"type":42,"tag":76,"props":1906,"children":1907},{"style":213},[1908],{"type":48,"value":1909},"subject_types_supported",{"type":42,"tag":76,"props":1911,"children":1912},{"style":166},[1913],{"type":48,"value":1685},{"type":42,"tag":76,"props":1915,"children":1916},{"style":166},[1917],{"type":48,"value":257},{"type":42,"tag":76,"props":1919,"children":1920},{"style":166},[1921],{"type":48,"value":1880},{"type":42,"tag":76,"props":1923,"children":1924},{"style":166},[1925],{"type":48,"value":1685},{"type":42,"tag":76,"props":1927,"children":1928},{"style":99},[1929],{"type":48,"value":1930},"pairwise",{"type":42,"tag":76,"props":1932,"children":1933},{"style":166},[1934],{"type":48,"value":1685},{"type":42,"tag":76,"props":1936,"children":1937},{"style":166},[1938],{"type":48,"value":1897},{"type":42,"tag":76,"props":1940,"children":1941},{"class":78,"line":776},[1942,1946,1951,1955,1959,1963,1967,1972,1976],{"type":42,"tag":76,"props":1943,"children":1944},{"style":166},[1945],{"type":48,"value":1675},{"type":42,"tag":76,"props":1947,"children":1948},{"style":213},[1949],{"type":48,"value":1950},"id_token_signing_alg_values_supported",{"type":42,"tag":76,"props":1952,"children":1953},{"style":166},[1954],{"type":48,"value":1685},{"type":42,"tag":76,"props":1956,"children":1957},{"style":166},[1958],{"type":48,"value":257},{"type":42,"tag":76,"props":1960,"children":1961},{"style":166},[1962],{"type":48,"value":1880},{"type":42,"tag":76,"props":1964,"children":1965},{"style":166},[1966],{"type":48,"value":1685},{"type":42,"tag":76,"props":1968,"children":1969},{"style":99},[1970],{"type":48,"value":1971},"RS256",{"type":42,"tag":76,"props":1973,"children":1974},{"style":166},[1975],{"type":48,"value":1685},{"type":42,"tag":76,"props":1977,"children":1978},{"style":166},[1979],{"type":48,"value":1897},{"type":42,"tag":76,"props":1981,"children":1982},{"class":78,"line":785},[1983,1987,1992,1996,2000,2004,2008,2013,2017,2021,2025,2030,2034,2038,2042,2047,2051],{"type":42,"tag":76,"props":1984,"children":1985},{"style":166},[1986],{"type":48,"value":1675},{"type":42,"tag":76,"props":1988,"children":1989},{"style":213},[1990],{"type":48,"value":1991},"scopes_supported",{"type":42,"tag":76,"props":1993,"children":1994},{"style":166},[1995],{"type":48,"value":1685},{"type":42,"tag":76,"props":1997,"children":1998},{"style":166},[1999],{"type":48,"value":257},{"type":42,"tag":76,"props":2001,"children":2002},{"style":166},[2003],{"type":48,"value":1880},{"type":42,"tag":76,"props":2005,"children":2006},{"style":166},[2007],{"type":48,"value":1685},{"type":42,"tag":76,"props":2009,"children":2010},{"style":99},[2011],{"type":48,"value":2012},"openid",{"type":42,"tag":76,"props":2014,"children":2015},{"style":166},[2016],{"type":48,"value":1685},{"type":42,"tag":76,"props":2018,"children":2019},{"style":166},[2020],{"type":48,"value":275},{"type":42,"tag":76,"props":2022,"children":2023},{"style":166},[2024],{"type":48,"value":1694},{"type":42,"tag":76,"props":2026,"children":2027},{"style":99},[2028],{"type":48,"value":2029},"email",{"type":42,"tag":76,"props":2031,"children":2032},{"style":166},[2033],{"type":48,"value":1685},{"type":42,"tag":76,"props":2035,"children":2036},{"style":166},[2037],{"type":48,"value":275},{"type":42,"tag":76,"props":2039,"children":2040},{"style":166},[2041],{"type":48,"value":1694},{"type":42,"tag":76,"props":2043,"children":2044},{"style":99},[2045],{"type":48,"value":2046},"name",{"type":42,"tag":76,"props":2048,"children":2049},{"style":166},[2050],{"type":48,"value":1685},{"type":42,"tag":76,"props":2052,"children":2053},{"style":166},[2054],{"type":48,"value":1897},{"type":42,"tag":76,"props":2056,"children":2057},{"class":78,"line":802},[2058,2062,2067,2071,2075,2079,2083,2088,2092],{"type":42,"tag":76,"props":2059,"children":2060},{"style":166},[2061],{"type":48,"value":1675},{"type":42,"tag":76,"props":2063,"children":2064},{"style":213},[2065],{"type":48,"value":2066},"token_endpoint_auth_methods_supported",{"type":42,"tag":76,"props":2068,"children":2069},{"style":166},[2070],{"type":48,"value":1685},{"type":42,"tag":76,"props":2072,"children":2073},{"style":166},[2074],{"type":48,"value":257},{"type":42,"tag":76,"props":2076,"children":2077},{"style":166},[2078],{"type":48,"value":1880},{"type":42,"tag":76,"props":2080,"children":2081},{"style":166},[2082],{"type":48,"value":1685},{"type":42,"tag":76,"props":2084,"children":2085},{"style":99},[2086],{"type":48,"value":2087},"client_secret_post",{"type":42,"tag":76,"props":2089,"children":2090},{"style":166},[2091],{"type":48,"value":1685},{"type":42,"tag":76,"props":2093,"children":2094},{"style":166},[2095],{"type":48,"value":1897},{"type":42,"tag":76,"props":2097,"children":2098},{"class":78,"line":855},[2099,2103,2108,2112,2116,2120,2124,2129,2133,2137,2141,2146,2150,2154,2158,2162,2166],{"type":42,"tag":76,"props":2100,"children":2101},{"style":166},[2102],{"type":48,"value":1675},{"type":42,"tag":76,"props":2104,"children":2105},{"style":213},[2106],{"type":48,"value":2107},"response_modes_supported",{"type":42,"tag":76,"props":2109,"children":2110},{"style":166},[2111],{"type":48,"value":1685},{"type":42,"tag":76,"props":2113,"children":2114},{"style":166},[2115],{"type":48,"value":257},{"type":42,"tag":76,"props":2117,"children":2118},{"style":166},[2119],{"type":48,"value":1880},{"type":42,"tag":76,"props":2121,"children":2122},{"style":166},[2123],{"type":48,"value":1685},{"type":42,"tag":76,"props":2125,"children":2126},{"style":99},[2127],{"type":48,"value":2128},"query",{"type":42,"tag":76,"props":2130,"children":2131},{"style":166},[2132],{"type":48,"value":1685},{"type":42,"tag":76,"props":2134,"children":2135},{"style":166},[2136],{"type":48,"value":275},{"type":42,"tag":76,"props":2138,"children":2139},{"style":166},[2140],{"type":48,"value":1694},{"type":42,"tag":76,"props":2142,"children":2143},{"style":99},[2144],{"type":48,"value":2145},"fragment",{"type":42,"tag":76,"props":2147,"children":2148},{"style":166},[2149],{"type":48,"value":1685},{"type":42,"tag":76,"props":2151,"children":2152},{"style":166},[2153],{"type":48,"value":275},{"type":42,"tag":76,"props":2155,"children":2156},{"style":166},[2157],{"type":48,"value":1694},{"type":42,"tag":76,"props":2159,"children":2160},{"style":99},[2161],{"type":48,"value":764},{"type":42,"tag":76,"props":2163,"children":2164},{"style":166},[2165],{"type":48,"value":1685},{"type":42,"tag":76,"props":2167,"children":2168},{"style":166},[2169],{"type":48,"value":2170},"]\n",{"type":42,"tag":76,"props":2172,"children":2173},{"class":78,"line":863},[2174],{"type":42,"tag":76,"props":2175,"children":2176},{"style":166},[2177],{"type":48,"value":2178},"}\n",{"type":42,"tag":315,"props":2180,"children":2182},{"id":2181},"jwks",[2183],{"type":48,"value":2184},"JWKS",{"type":42,"tag":64,"props":2186,"children":2188},{"className":66,"code":2187,"language":68,"meta":69,"style":69},"curl http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fkeys\n",[2189],{"type":42,"tag":72,"props":2190,"children":2191},{"__ignoreMap":69},[2192],{"type":42,"tag":76,"props":2193,"children":2194},{"class":78,"line":79},[2195,2199],{"type":42,"tag":76,"props":2196,"children":2197},{"style":93},[2198],{"type":48,"value":1641},{"type":42,"tag":76,"props":2200,"children":2201},{"style":99},[2202],{"type":48,"value":2203}," http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fkeys\n",{"type":42,"tag":51,"props":2205,"children":2206},{},[2207,2209,2215,2217,2223,2225,2230],{"type":48,"value":2208},"Returns an RSA public key (",{"type":42,"tag":72,"props":2210,"children":2212},{"className":2211},[],[2213],{"type":48,"value":2214},"kid",{"type":48,"value":2216},": ",{"type":42,"tag":72,"props":2218,"children":2220},{"className":2219},[],[2221],{"type":48,"value":2222},"emulate-apple-1",{"type":48,"value":2224},") for verifying ",{"type":42,"tag":72,"props":2226,"children":2228},{"className":2227},[],[2229],{"type":48,"value":1612},{"type":48,"value":2231}," signatures.",{"type":42,"tag":315,"props":2233,"children":2235},{"id":2234},"authorization",[2236],{"type":48,"value":2237},"Authorization",{"type":42,"tag":64,"props":2239,"children":2241},{"className":66,"code":2240,"language":68,"meta":69,"style":69},"# Browser flow: redirects to a user picker page\ncurl -v \"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fauthorize?\\\nclient_id=com.example.app&\\\nredirect_uri=http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple&\\\nscope=openid+email+name&\\\nresponse_type=code&\\\nstate=random-state&\\\nnonce=random-nonce&\\\nresponse_mode=form_post\"\n",[2242],{"type":42,"tag":72,"props":2243,"children":2244},{"__ignoreMap":69},[2245,2253,2279,2291,2303,2315,2327,2339,2351],{"type":42,"tag":76,"props":2246,"children":2247},{"class":78,"line":79},[2248],{"type":42,"tag":76,"props":2249,"children":2250},{"style":83},[2251],{"type":48,"value":2252},"# Browser flow: redirects to a user picker page\n",{"type":42,"tag":76,"props":2254,"children":2255},{"class":78,"line":89},[2256,2260,2265,2269,2274],{"type":42,"tag":76,"props":2257,"children":2258},{"style":93},[2259],{"type":48,"value":1641},{"type":42,"tag":76,"props":2261,"children":2262},{"style":99},[2263],{"type":48,"value":2264}," -v",{"type":42,"tag":76,"props":2266,"children":2267},{"style":166},[2268],{"type":48,"value":1694},{"type":42,"tag":76,"props":2270,"children":2271},{"style":99},[2272],{"type":48,"value":2273},"http:\u002F\u002Flocalhost:4004\u002Fauth\u002Fauthorize?",{"type":42,"tag":76,"props":2275,"children":2276},{"style":172},[2277],{"type":48,"value":2278},"\\\n",{"type":42,"tag":76,"props":2280,"children":2281},{"class":78,"line":115},[2282,2287],{"type":42,"tag":76,"props":2283,"children":2284},{"style":99},[2285],{"type":48,"value":2286},"client_id=com.example.app&",{"type":42,"tag":76,"props":2288,"children":2289},{"style":172},[2290],{"type":48,"value":2278},{"type":42,"tag":76,"props":2292,"children":2293},{"class":78,"line":125},[2294,2299],{"type":42,"tag":76,"props":2295,"children":2296},{"style":99},[2297],{"type":48,"value":2298},"redirect_uri=http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple&",{"type":42,"tag":76,"props":2300,"children":2301},{"style":172},[2302],{"type":48,"value":2278},{"type":42,"tag":76,"props":2304,"children":2305},{"class":78,"line":134},[2306,2311],{"type":42,"tag":76,"props":2307,"children":2308},{"style":99},[2309],{"type":48,"value":2310},"scope=openid+email+name&",{"type":42,"tag":76,"props":2312,"children":2313},{"style":172},[2314],{"type":48,"value":2278},{"type":42,"tag":76,"props":2316,"children":2317},{"class":78,"line":630},[2318,2323],{"type":42,"tag":76,"props":2319,"children":2320},{"style":99},[2321],{"type":48,"value":2322},"response_type=code&",{"type":42,"tag":76,"props":2324,"children":2325},{"style":172},[2326],{"type":48,"value":2278},{"type":42,"tag":76,"props":2328,"children":2329},{"class":78,"line":648},[2330,2335],{"type":42,"tag":76,"props":2331,"children":2332},{"style":99},[2333],{"type":48,"value":2334},"state=random-state&",{"type":42,"tag":76,"props":2336,"children":2337},{"style":172},[2338],{"type":48,"value":2278},{"type":42,"tag":76,"props":2340,"children":2341},{"class":78,"line":706},[2342,2347],{"type":42,"tag":76,"props":2343,"children":2344},{"style":99},[2345],{"type":48,"value":2346},"nonce=random-nonce&",{"type":42,"tag":76,"props":2348,"children":2349},{"style":172},[2350],{"type":48,"value":2278},{"type":42,"tag":76,"props":2352,"children":2353},{"class":78,"line":776},[2354,2359],{"type":42,"tag":76,"props":2355,"children":2356},{"style":99},[2357],{"type":48,"value":2358},"response_mode=form_post",{"type":42,"tag":76,"props":2360,"children":2361},{"style":166},[2362],{"type":48,"value":2363},"\"\n",{"type":42,"tag":51,"props":2365,"children":2366},{},[2367],{"type":48,"value":2368},"Query parameters:",{"type":42,"tag":352,"props":2370,"children":2371},{},[2372,2388],{"type":42,"tag":356,"props":2373,"children":2374},{},[2375],{"type":42,"tag":360,"props":2376,"children":2377},{},[2378,2383],{"type":42,"tag":364,"props":2379,"children":2380},{},[2381],{"type":48,"value":2382},"Param",{"type":42,"tag":364,"props":2384,"children":2385},{},[2386],{"type":48,"value":2387},"Description",{"type":42,"tag":375,"props":2389,"children":2390},{},[2391,2407,2423,2447,2464,2481],{"type":42,"tag":360,"props":2392,"children":2393},{},[2394,2402],{"type":42,"tag":382,"props":2395,"children":2396},{},[2397],{"type":42,"tag":72,"props":2398,"children":2400},{"className":2399},[],[2401],{"type":48,"value":1569},{"type":42,"tag":382,"props":2403,"children":2404},{},[2405],{"type":48,"value":2406},"OAuth client ID (Apple Services ID)",{"type":42,"tag":360,"props":2408,"children":2409},{},[2410,2418],{"type":42,"tag":382,"props":2411,"children":2412},{},[2413],{"type":42,"tag":72,"props":2414,"children":2416},{"className":2415},[],[2417],{"type":48,"value":1584},{"type":42,"tag":382,"props":2419,"children":2420},{},[2421],{"type":48,"value":2422},"Callback URL",{"type":42,"tag":360,"props":2424,"children":2425},{},[2426,2435],{"type":42,"tag":382,"props":2427,"children":2428},{},[2429],{"type":42,"tag":72,"props":2430,"children":2432},{"className":2431},[],[2433],{"type":48,"value":2434},"scope",{"type":42,"tag":382,"props":2436,"children":2437},{},[2438,2440,2445],{"type":48,"value":2439},"Space-separated scopes (",{"type":42,"tag":72,"props":2441,"children":2443},{"className":2442},[],[2444],{"type":48,"value":738},{"type":48,"value":2446},")",{"type":42,"tag":360,"props":2448,"children":2449},{},[2450,2459],{"type":42,"tag":382,"props":2451,"children":2452},{},[2453],{"type":42,"tag":72,"props":2454,"children":2456},{"className":2455},[],[2457],{"type":48,"value":2458},"state",{"type":42,"tag":382,"props":2460,"children":2461},{},[2462],{"type":48,"value":2463},"Opaque state for CSRF protection",{"type":42,"tag":360,"props":2465,"children":2466},{},[2467,2476],{"type":42,"tag":382,"props":2468,"children":2469},{},[2470],{"type":42,"tag":72,"props":2471,"children":2473},{"className":2472},[],[2474],{"type":48,"value":2475},"nonce",{"type":42,"tag":382,"props":2477,"children":2478},{},[2479],{"type":48,"value":2480},"Nonce for ID token (optional)",{"type":42,"tag":360,"props":2482,"children":2483},{},[2484,2493],{"type":42,"tag":382,"props":2485,"children":2486},{},[2487],{"type":42,"tag":72,"props":2488,"children":2490},{"className":2489},[],[2491],{"type":48,"value":2492},"response_mode",{"type":42,"tag":382,"props":2494,"children":2495},{},[2496,2501,2503,2508,2510],{"type":42,"tag":72,"props":2497,"children":2499},{"className":2498},[],[2500],{"type":48,"value":2128},{"type":48,"value":2502}," (default), ",{"type":42,"tag":72,"props":2504,"children":2506},{"className":2505},[],[2507],{"type":48,"value":764},{"type":48,"value":2509},", or ",{"type":42,"tag":72,"props":2511,"children":2513},{"className":2512},[],[2514],{"type":48,"value":2145},{"type":42,"tag":51,"props":2516,"children":2517},{},[2518,2520,2525,2527,2532,2534,2539,2540,2545,2547,2553,2555,2561],{"type":48,"value":2519},"The emulator renders an HTML page where you select a seeded user. After selection, it redirects (or auto-submits a form for ",{"type":42,"tag":72,"props":2521,"children":2523},{"className":2522},[],[2524],{"type":48,"value":764},{"type":48,"value":2526},") to ",{"type":42,"tag":72,"props":2528,"children":2530},{"className":2529},[],[2531],{"type":48,"value":1584},{"type":48,"value":2533}," with ",{"type":42,"tag":72,"props":2535,"children":2537},{"className":2536},[],[2538],{"type":48,"value":72},{"type":48,"value":1578},{"type":42,"tag":72,"props":2541,"children":2543},{"className":2542},[],[2544],{"type":48,"value":2458},{"type":48,"value":2546},". On the ",{"type":42,"tag":2548,"props":2549,"children":2550},"strong",{},[2551],{"type":48,"value":2552},"first",{"type":48,"value":2554}," authorization per user\u002Fclient pair, a ",{"type":42,"tag":72,"props":2556,"children":2558},{"className":2557},[],[2559],{"type":48,"value":2560},"user",{"type":48,"value":2562}," JSON blob is also included (matching Apple's real behavior).",{"type":42,"tag":315,"props":2564,"children":2566},{"id":2565},"token-exchange",[2567],{"type":48,"value":2568},"Token Exchange",{"type":42,"tag":64,"props":2570,"children":2572},{"className":66,"code":2571,"language":68,"meta":69,"style":69},"curl -X POST http:\u002F\u002Flocalhost:4004\u002Fauth\u002Ftoken \\\n  -H \"Content-Type: application\u002Fx-www-form-urlencoded\" \\\n  -d \"code=\u003Cauthorization_code>&\\\nclient_id=com.example.app&\\\nclient_secret=\u003Cclient_secret>&\\\ngrant_type=authorization_code\"\n",[2573],{"type":42,"tag":72,"props":2574,"children":2575},{"__ignoreMap":69},[2576,2603,2628,2649,2660,2672],{"type":42,"tag":76,"props":2577,"children":2578},{"class":78,"line":79},[2579,2583,2588,2593,2598],{"type":42,"tag":76,"props":2580,"children":2581},{"style":93},[2582],{"type":48,"value":1641},{"type":42,"tag":76,"props":2584,"children":2585},{"style":99},[2586],{"type":48,"value":2587}," -X",{"type":42,"tag":76,"props":2589,"children":2590},{"style":99},[2591],{"type":48,"value":2592}," POST",{"type":42,"tag":76,"props":2594,"children":2595},{"style":99},[2596],{"type":48,"value":2597}," http:\u002F\u002Flocalhost:4004\u002Fauth\u002Ftoken",{"type":42,"tag":76,"props":2599,"children":2600},{"style":172},[2601],{"type":48,"value":2602}," \\\n",{"type":42,"tag":76,"props":2604,"children":2605},{"class":78,"line":89},[2606,2611,2615,2620,2624],{"type":42,"tag":76,"props":2607,"children":2608},{"style":99},[2609],{"type":48,"value":2610},"  -H",{"type":42,"tag":76,"props":2612,"children":2613},{"style":166},[2614],{"type":48,"value":1694},{"type":42,"tag":76,"props":2616,"children":2617},{"style":99},[2618],{"type":48,"value":2619},"Content-Type: application\u002Fx-www-form-urlencoded",{"type":42,"tag":76,"props":2621,"children":2622},{"style":166},[2623],{"type":48,"value":1685},{"type":42,"tag":76,"props":2625,"children":2626},{"style":172},[2627],{"type":48,"value":2602},{"type":42,"tag":76,"props":2629,"children":2630},{"class":78,"line":115},[2631,2636,2640,2645],{"type":42,"tag":76,"props":2632,"children":2633},{"style":99},[2634],{"type":48,"value":2635},"  -d",{"type":42,"tag":76,"props":2637,"children":2638},{"style":166},[2639],{"type":48,"value":1694},{"type":42,"tag":76,"props":2641,"children":2642},{"style":99},[2643],{"type":48,"value":2644},"code=\u003Cauthorization_code>&",{"type":42,"tag":76,"props":2646,"children":2647},{"style":172},[2648],{"type":48,"value":2278},{"type":42,"tag":76,"props":2650,"children":2651},{"class":78,"line":125},[2652,2656],{"type":42,"tag":76,"props":2653,"children":2654},{"style":99},[2655],{"type":48,"value":2286},{"type":42,"tag":76,"props":2657,"children":2658},{"style":172},[2659],{"type":48,"value":2278},{"type":42,"tag":76,"props":2661,"children":2662},{"class":78,"line":134},[2663,2668],{"type":42,"tag":76,"props":2664,"children":2665},{"style":99},[2666],{"type":48,"value":2667},"client_secret=\u003Cclient_secret>&",{"type":42,"tag":76,"props":2669,"children":2670},{"style":172},[2671],{"type":48,"value":2278},{"type":42,"tag":76,"props":2673,"children":2674},{"class":78,"line":630},[2675,2680],{"type":42,"tag":76,"props":2676,"children":2677},{"style":99},[2678],{"type":48,"value":2679},"grant_type=authorization_code",{"type":42,"tag":76,"props":2681,"children":2682},{"style":166},[2683],{"type":48,"value":2363},{"type":42,"tag":51,"props":2685,"children":2686},{},[2687],{"type":48,"value":2688},"Returns:",{"type":42,"tag":64,"props":2690,"children":2692},{"className":1654,"code":2691,"language":1656,"meta":69,"style":69},"{\n  \"access_token\": \"apple_...\",\n  \"refresh_token\": \"r_apple_...\",\n  \"id_token\": \"\u003Cjwt>\",\n  \"token_type\": \"Bearer\",\n  \"expires_in\": 3600\n}\n",[2693],{"type":42,"tag":72,"props":2694,"children":2695},{"__ignoreMap":69},[2696,2703,2740,2777,2813,2850,2875],{"type":42,"tag":76,"props":2697,"children":2698},{"class":78,"line":79},[2699],{"type":42,"tag":76,"props":2700,"children":2701},{"style":166},[2702],{"type":48,"value":549},{"type":42,"tag":76,"props":2704,"children":2705},{"class":78,"line":89},[2706,2710,2715,2719,2723,2727,2732,2736],{"type":42,"tag":76,"props":2707,"children":2708},{"style":166},[2709],{"type":48,"value":1675},{"type":42,"tag":76,"props":2711,"children":2712},{"style":213},[2713],{"type":48,"value":2714},"access_token",{"type":42,"tag":76,"props":2716,"children":2717},{"style":166},[2718],{"type":48,"value":1685},{"type":42,"tag":76,"props":2720,"children":2721},{"style":166},[2722],{"type":48,"value":257},{"type":42,"tag":76,"props":2724,"children":2725},{"style":166},[2726],{"type":48,"value":1694},{"type":42,"tag":76,"props":2728,"children":2729},{"style":99},[2730],{"type":48,"value":2731},"apple_...",{"type":42,"tag":76,"props":2733,"children":2734},{"style":166},[2735],{"type":48,"value":1685},{"type":42,"tag":76,"props":2737,"children":2738},{"style":166},[2739],{"type":48,"value":590},{"type":42,"tag":76,"props":2741,"children":2742},{"class":78,"line":115},[2743,2747,2752,2756,2760,2764,2769,2773],{"type":42,"tag":76,"props":2744,"children":2745},{"style":166},[2746],{"type":48,"value":1675},{"type":42,"tag":76,"props":2748,"children":2749},{"style":213},[2750],{"type":48,"value":2751},"refresh_token",{"type":42,"tag":76,"props":2753,"children":2754},{"style":166},[2755],{"type":48,"value":1685},{"type":42,"tag":76,"props":2757,"children":2758},{"style":166},[2759],{"type":48,"value":257},{"type":42,"tag":76,"props":2761,"children":2762},{"style":166},[2763],{"type":48,"value":1694},{"type":42,"tag":76,"props":2765,"children":2766},{"style":99},[2767],{"type":48,"value":2768},"r_apple_...",{"type":42,"tag":76,"props":2770,"children":2771},{"style":166},[2772],{"type":48,"value":1685},{"type":42,"tag":76,"props":2774,"children":2775},{"style":166},[2776],{"type":48,"value":590},{"type":42,"tag":76,"props":2778,"children":2779},{"class":78,"line":125},[2780,2784,2788,2792,2796,2800,2805,2809],{"type":42,"tag":76,"props":2781,"children":2782},{"style":166},[2783],{"type":48,"value":1675},{"type":42,"tag":76,"props":2785,"children":2786},{"style":213},[2787],{"type":48,"value":1612},{"type":42,"tag":76,"props":2789,"children":2790},{"style":166},[2791],{"type":48,"value":1685},{"type":42,"tag":76,"props":2793,"children":2794},{"style":166},[2795],{"type":48,"value":257},{"type":42,"tag":76,"props":2797,"children":2798},{"style":166},[2799],{"type":48,"value":1694},{"type":42,"tag":76,"props":2801,"children":2802},{"style":99},[2803],{"type":48,"value":2804},"\u003Cjwt>",{"type":42,"tag":76,"props":2806,"children":2807},{"style":166},[2808],{"type":48,"value":1685},{"type":42,"tag":76,"props":2810,"children":2811},{"style":166},[2812],{"type":48,"value":590},{"type":42,"tag":76,"props":2814,"children":2815},{"class":78,"line":134},[2816,2820,2825,2829,2833,2837,2842,2846],{"type":42,"tag":76,"props":2817,"children":2818},{"style":166},[2819],{"type":48,"value":1675},{"type":42,"tag":76,"props":2821,"children":2822},{"style":213},[2823],{"type":48,"value":2824},"token_type",{"type":42,"tag":76,"props":2826,"children":2827},{"style":166},[2828],{"type":48,"value":1685},{"type":42,"tag":76,"props":2830,"children":2831},{"style":166},[2832],{"type":48,"value":257},{"type":42,"tag":76,"props":2834,"children":2835},{"style":166},[2836],{"type":48,"value":1694},{"type":42,"tag":76,"props":2838,"children":2839},{"style":99},[2840],{"type":48,"value":2841},"Bearer",{"type":42,"tag":76,"props":2843,"children":2844},{"style":166},[2845],{"type":48,"value":1685},{"type":42,"tag":76,"props":2847,"children":2848},{"style":166},[2849],{"type":48,"value":590},{"type":42,"tag":76,"props":2851,"children":2852},{"class":78,"line":630},[2853,2857,2862,2866,2870],{"type":42,"tag":76,"props":2854,"children":2855},{"style":166},[2856],{"type":48,"value":1675},{"type":42,"tag":76,"props":2858,"children":2859},{"style":213},[2860],{"type":48,"value":2861},"expires_in",{"type":42,"tag":76,"props":2863,"children":2864},{"style":166},[2865],{"type":48,"value":1685},{"type":42,"tag":76,"props":2867,"children":2868},{"style":166},[2869],{"type":48,"value":257},{"type":42,"tag":76,"props":2871,"children":2872},{"style":287},[2873],{"type":48,"value":2874}," 3600\n",{"type":42,"tag":76,"props":2876,"children":2877},{"class":78,"line":648},[2878],{"type":42,"tag":76,"props":2879,"children":2880},{"style":166},[2881],{"type":48,"value":2178},{"type":42,"tag":51,"props":2883,"children":2884},{},[2885,2887,2892,2894,2900,2902,2907,2908,2914,2916,2922,2923,2929,2930,2936,2938,2943],{"type":48,"value":2886},"The ",{"type":42,"tag":72,"props":2888,"children":2890},{"className":2889},[],[2891],{"type":48,"value":1612},{"type":48,"value":2893}," is an RS256 JWT containing ",{"type":42,"tag":72,"props":2895,"children":2897},{"className":2896},[],[2898],{"type":48,"value":2899},"sub",{"type":48,"value":2901},", ",{"type":42,"tag":72,"props":2903,"children":2905},{"className":2904},[],[2906],{"type":48,"value":2029},{"type":48,"value":2901},{"type":42,"tag":72,"props":2909,"children":2911},{"className":2910},[],[2912],{"type":48,"value":2913},"email_verified",{"type":48,"value":2915}," (string), ",{"type":42,"tag":72,"props":2917,"children":2919},{"className":2918},[],[2920],{"type":48,"value":2921},"is_private_email",{"type":48,"value":2915},{"type":42,"tag":72,"props":2924,"children":2926},{"className":2925},[],[2927],{"type":48,"value":2928},"real_user_status",{"type":48,"value":2901},{"type":42,"tag":72,"props":2931,"children":2933},{"className":2932},[],[2934],{"type":48,"value":2935},"auth_time",{"type":48,"value":2937},", and optional ",{"type":42,"tag":72,"props":2939,"children":2941},{"className":2940},[],[2942],{"type":48,"value":2475},{"type":48,"value":571},{"type":42,"tag":315,"props":2945,"children":2947},{"id":2946},"refresh-token",[2948],{"type":48,"value":2949},"Refresh Token",{"type":42,"tag":64,"props":2951,"children":2953},{"className":66,"code":2952,"language":68,"meta":69,"style":69},"curl -X POST http:\u002F\u002Flocalhost:4004\u002Fauth\u002Ftoken \\\n  -H \"Content-Type: application\u002Fx-www-form-urlencoded\" \\\n  -d \"refresh_token=r_apple_...&\\\nclient_id=com.example.app&\\\ngrant_type=refresh_token\"\n",[2954],{"type":42,"tag":72,"props":2955,"children":2956},{"__ignoreMap":69},[2957,2980,3003,3023,3034],{"type":42,"tag":76,"props":2958,"children":2959},{"class":78,"line":79},[2960,2964,2968,2972,2976],{"type":42,"tag":76,"props":2961,"children":2962},{"style":93},[2963],{"type":48,"value":1641},{"type":42,"tag":76,"props":2965,"children":2966},{"style":99},[2967],{"type":48,"value":2587},{"type":42,"tag":76,"props":2969,"children":2970},{"style":99},[2971],{"type":48,"value":2592},{"type":42,"tag":76,"props":2973,"children":2974},{"style":99},[2975],{"type":48,"value":2597},{"type":42,"tag":76,"props":2977,"children":2978},{"style":172},[2979],{"type":48,"value":2602},{"type":42,"tag":76,"props":2981,"children":2982},{"class":78,"line":89},[2983,2987,2991,2995,2999],{"type":42,"tag":76,"props":2984,"children":2985},{"style":99},[2986],{"type":48,"value":2610},{"type":42,"tag":76,"props":2988,"children":2989},{"style":166},[2990],{"type":48,"value":1694},{"type":42,"tag":76,"props":2992,"children":2993},{"style":99},[2994],{"type":48,"value":2619},{"type":42,"tag":76,"props":2996,"children":2997},{"style":166},[2998],{"type":48,"value":1685},{"type":42,"tag":76,"props":3000,"children":3001},{"style":172},[3002],{"type":48,"value":2602},{"type":42,"tag":76,"props":3004,"children":3005},{"class":78,"line":115},[3006,3010,3014,3019],{"type":42,"tag":76,"props":3007,"children":3008},{"style":99},[3009],{"type":48,"value":2635},{"type":42,"tag":76,"props":3011,"children":3012},{"style":166},[3013],{"type":48,"value":1694},{"type":42,"tag":76,"props":3015,"children":3016},{"style":99},[3017],{"type":48,"value":3018},"refresh_token=r_apple_...&",{"type":42,"tag":76,"props":3020,"children":3021},{"style":172},[3022],{"type":48,"value":2278},{"type":42,"tag":76,"props":3024,"children":3025},{"class":78,"line":125},[3026,3030],{"type":42,"tag":76,"props":3027,"children":3028},{"style":99},[3029],{"type":48,"value":2286},{"type":42,"tag":76,"props":3031,"children":3032},{"style":172},[3033],{"type":48,"value":2278},{"type":42,"tag":76,"props":3035,"children":3036},{"class":78,"line":134},[3037,3042],{"type":42,"tag":76,"props":3038,"children":3039},{"style":99},[3040],{"type":48,"value":3041},"grant_type=refresh_token",{"type":42,"tag":76,"props":3043,"children":3044},{"style":166},[3045],{"type":48,"value":2363},{"type":42,"tag":51,"props":3047,"children":3048},{},[3049,3051,3056,3057,3062,3064,3069],{"type":48,"value":3050},"Returns a new ",{"type":42,"tag":72,"props":3052,"children":3054},{"className":3053},[],[3055],{"type":48,"value":2714},{"type":48,"value":1578},{"type":42,"tag":72,"props":3058,"children":3060},{"className":3059},[],[3061],{"type":48,"value":1612},{"type":48,"value":3063},". No new ",{"type":42,"tag":72,"props":3065,"children":3067},{"className":3066},[],[3068],{"type":48,"value":2751},{"type":48,"value":3070}," is issued on refresh (matching Apple's behavior).",{"type":42,"tag":315,"props":3072,"children":3074},{"id":3073},"token-revocation",[3075],{"type":48,"value":3076},"Token Revocation",{"type":42,"tag":64,"props":3078,"children":3080},{"className":66,"code":3079,"language":68,"meta":69,"style":69},"curl -X POST http:\u002F\u002Flocalhost:4004\u002Fauth\u002Frevoke \\\n  -H \"Content-Type: application\u002Fx-www-form-urlencoded\" \\\n  -d \"token=apple_...\"\n",[3081],{"type":42,"tag":72,"props":3082,"children":3083},{"__ignoreMap":69},[3084,3108,3131],{"type":42,"tag":76,"props":3085,"children":3086},{"class":78,"line":79},[3087,3091,3095,3099,3104],{"type":42,"tag":76,"props":3088,"children":3089},{"style":93},[3090],{"type":48,"value":1641},{"type":42,"tag":76,"props":3092,"children":3093},{"style":99},[3094],{"type":48,"value":2587},{"type":42,"tag":76,"props":3096,"children":3097},{"style":99},[3098],{"type":48,"value":2592},{"type":42,"tag":76,"props":3100,"children":3101},{"style":99},[3102],{"type":48,"value":3103}," http:\u002F\u002Flocalhost:4004\u002Fauth\u002Frevoke",{"type":42,"tag":76,"props":3105,"children":3106},{"style":172},[3107],{"type":48,"value":2602},{"type":42,"tag":76,"props":3109,"children":3110},{"class":78,"line":89},[3111,3115,3119,3123,3127],{"type":42,"tag":76,"props":3112,"children":3113},{"style":99},[3114],{"type":48,"value":2610},{"type":42,"tag":76,"props":3116,"children":3117},{"style":166},[3118],{"type":48,"value":1694},{"type":42,"tag":76,"props":3120,"children":3121},{"style":99},[3122],{"type":48,"value":2619},{"type":42,"tag":76,"props":3124,"children":3125},{"style":166},[3126],{"type":48,"value":1685},{"type":42,"tag":76,"props":3128,"children":3129},{"style":172},[3130],{"type":48,"value":2602},{"type":42,"tag":76,"props":3132,"children":3133},{"class":78,"line":115},[3134,3138,3142,3147],{"type":42,"tag":76,"props":3135,"children":3136},{"style":99},[3137],{"type":48,"value":2635},{"type":42,"tag":76,"props":3139,"children":3140},{"style":166},[3141],{"type":48,"value":1694},{"type":42,"tag":76,"props":3143,"children":3144},{"style":99},[3145],{"type":48,"value":3146},"token=apple_...",{"type":42,"tag":76,"props":3148,"children":3149},{"style":166},[3150],{"type":48,"value":2363},{"type":42,"tag":51,"props":3152,"children":3153},{},[3154,3156,3162],{"type":48,"value":3155},"Returns ",{"type":42,"tag":72,"props":3157,"children":3159},{"className":3158},[],[3160],{"type":48,"value":3161},"200 OK",{"type":48,"value":3163},". The token is removed from the emulator's token map.",{"type":42,"tag":57,"props":3165,"children":3167},{"id":3166},"common-patterns",[3168],{"type":48,"value":3169},"Common Patterns",{"type":42,"tag":315,"props":3171,"children":3173},{"id":3172},"full-authorization-code-flow",[3174],{"type":48,"value":3175},"Full Authorization Code Flow",{"type":42,"tag":64,"props":3177,"children":3179},{"className":66,"code":3178,"language":68,"meta":69,"style":69},"APPLE_URL=\"http:\u002F\u002Flocalhost:4004\"\nCLIENT_ID=\"com.example.app\"\nREDIRECT_URI=\"http:\u002F\u002Flocalhost:3000\u002Fapi\u002Fauth\u002Fcallback\u002Fapple\"\n\n# 1. Open in browser (user picks a seeded account)\n#    $APPLE_URL\u002Fauth\u002Fauthorize?client_id=$CLIENT_ID&redirect_uri=$REDIRECT_URI&scope=openid+email+name&response_type=code&state=abc&response_mode=form_post\n\n# 2. After user selection, emulator posts to:\n#    $REDIRECT_URI with code=\u003Ccode>&state=abc (and user JSON on first auth)\n\n# 3. Exchange code for tokens\ncurl -X POST $APPLE_URL\u002Fauth\u002Ftoken \\\n  -H \"Content-Type: application\u002Fx-www-form-urlencoded\" \\\n  -d \"code=\u003Ccode>&client_id=$CLIENT_ID&grant_type=authorization_code\"\n\n# 4. Decode the id_token JWT to get user info\n",[3180],{"type":42,"tag":72,"props":3181,"children":3182},{"__ignoreMap":69},[3183,3206,3231,3255,3262,3270,3278,3285,3293,3301,3308,3316,3344,3367,3397,3404],{"type":42,"tag":76,"props":3184,"children":3185},{"class":78,"line":79},[3186,3190,3194,3198,3202],{"type":42,"tag":76,"props":3187,"children":3188},{"style":172},[3189],{"type":48,"value":1235},{"type":42,"tag":76,"props":3191,"children":3192},{"style":166},[3193],{"type":48,"value":226},{"type":42,"tag":76,"props":3195,"children":3196},{"style":166},[3197],{"type":48,"value":1685},{"type":42,"tag":76,"props":3199,"children":3200},{"style":99},[3201],{"type":48,"value":1699},{"type":42,"tag":76,"props":3203,"children":3204},{"style":166},[3205],{"type":48,"value":2363},{"type":42,"tag":76,"props":3207,"children":3208},{"class":78,"line":89},[3209,3214,3218,3222,3227],{"type":42,"tag":76,"props":3210,"children":3211},{"style":172},[3212],{"type":48,"value":3213},"CLIENT_ID",{"type":42,"tag":76,"props":3215,"children":3216},{"style":166},[3217],{"type":48,"value":226},{"type":42,"tag":76,"props":3219,"children":3220},{"style":166},[3221],{"type":48,"value":1685},{"type":42,"tag":76,"props":3223,"children":3224},{"style":99},[3225],{"type":48,"value":3226},"com.example.app",{"type":42,"tag":76,"props":3228,"children":3229},{"style":166},[3230],{"type":48,"value":2363},{"type":42,"tag":76,"props":3232,"children":3233},{"class":78,"line":115},[3234,3239,3243,3247,3251],{"type":42,"tag":76,"props":3235,"children":3236},{"style":172},[3237],{"type":48,"value":3238},"REDIRECT_URI",{"type":42,"tag":76,"props":3240,"children":3241},{"style":166},[3242],{"type":48,"value":226},{"type":42,"tag":76,"props":3244,"children":3245},{"style":166},[3246],{"type":48,"value":1685},{"type":42,"tag":76,"props":3248,"children":3249},{"style":99},[3250],{"type":48,"value":1206},{"type":42,"tag":76,"props":3252,"children":3253},{"style":166},[3254],{"type":48,"value":2363},{"type":42,"tag":76,"props":3256,"children":3257},{"class":78,"line":125},[3258],{"type":42,"tag":76,"props":3259,"children":3260},{"emptyLinePlaceholder":119},[3261],{"type":48,"value":122},{"type":42,"tag":76,"props":3263,"children":3264},{"class":78,"line":134},[3265],{"type":42,"tag":76,"props":3266,"children":3267},{"style":83},[3268],{"type":48,"value":3269},"# 1. Open in browser (user picks a seeded account)\n",{"type":42,"tag":76,"props":3271,"children":3272},{"class":78,"line":630},[3273],{"type":42,"tag":76,"props":3274,"children":3275},{"style":83},[3276],{"type":48,"value":3277},"#    $APPLE_URL\u002Fauth\u002Fauthorize?client_id=$CLIENT_ID&redirect_uri=$REDIRECT_URI&scope=openid+email+name&response_type=code&state=abc&response_mode=form_post\n",{"type":42,"tag":76,"props":3279,"children":3280},{"class":78,"line":648},[3281],{"type":42,"tag":76,"props":3282,"children":3283},{"emptyLinePlaceholder":119},[3284],{"type":48,"value":122},{"type":42,"tag":76,"props":3286,"children":3287},{"class":78,"line":706},[3288],{"type":42,"tag":76,"props":3289,"children":3290},{"style":83},[3291],{"type":48,"value":3292},"# 2. After user selection, emulator posts to:\n",{"type":42,"tag":76,"props":3294,"children":3295},{"class":78,"line":776},[3296],{"type":42,"tag":76,"props":3297,"children":3298},{"style":83},[3299],{"type":48,"value":3300},"#    $REDIRECT_URI with code=\u003Ccode>&state=abc (and user JSON on first auth)\n",{"type":42,"tag":76,"props":3302,"children":3303},{"class":78,"line":785},[3304],{"type":42,"tag":76,"props":3305,"children":3306},{"emptyLinePlaceholder":119},[3307],{"type":48,"value":122},{"type":42,"tag":76,"props":3309,"children":3310},{"class":78,"line":802},[3311],{"type":42,"tag":76,"props":3312,"children":3313},{"style":83},[3314],{"type":48,"value":3315},"# 3. Exchange code for tokens\n",{"type":42,"tag":76,"props":3317,"children":3318},{"class":78,"line":855},[3319,3323,3327,3331,3336,3340],{"type":42,"tag":76,"props":3320,"children":3321},{"style":93},[3322],{"type":48,"value":1641},{"type":42,"tag":76,"props":3324,"children":3325},{"style":99},[3326],{"type":48,"value":2587},{"type":42,"tag":76,"props":3328,"children":3329},{"style":99},[3330],{"type":48,"value":2592},{"type":42,"tag":76,"props":3332,"children":3333},{"style":172},[3334],{"type":48,"value":3335}," $APPLE_URL",{"type":42,"tag":76,"props":3337,"children":3338},{"style":99},[3339],{"type":48,"value":844},{"type":42,"tag":76,"props":3341,"children":3342},{"style":172},[3343],{"type":48,"value":2602},{"type":42,"tag":76,"props":3345,"children":3346},{"class":78,"line":863},[3347,3351,3355,3359,3363],{"type":42,"tag":76,"props":3348,"children":3349},{"style":99},[3350],{"type":48,"value":2610},{"type":42,"tag":76,"props":3352,"children":3353},{"style":166},[3354],{"type":48,"value":1694},{"type":42,"tag":76,"props":3356,"children":3357},{"style":99},[3358],{"type":48,"value":2619},{"type":42,"tag":76,"props":3360,"children":3361},{"style":166},[3362],{"type":48,"value":1685},{"type":42,"tag":76,"props":3364,"children":3365},{"style":172},[3366],{"type":48,"value":2602},{"type":42,"tag":76,"props":3368,"children":3369},{"class":78,"line":917},[3370,3374,3378,3383,3388,3393],{"type":42,"tag":76,"props":3371,"children":3372},{"style":99},[3373],{"type":48,"value":2635},{"type":42,"tag":76,"props":3375,"children":3376},{"style":166},[3377],{"type":48,"value":1694},{"type":42,"tag":76,"props":3379,"children":3380},{"style":99},[3381],{"type":48,"value":3382},"code=\u003Ccode>&client_id=",{"type":42,"tag":76,"props":3384,"children":3385},{"style":172},[3386],{"type":48,"value":3387},"$CLIENT_ID",{"type":42,"tag":76,"props":3389,"children":3390},{"style":99},[3391],{"type":48,"value":3392},"&grant_type=authorization_code",{"type":42,"tag":76,"props":3394,"children":3395},{"style":166},[3396],{"type":48,"value":2363},{"type":42,"tag":76,"props":3398,"children":3399},{"class":78,"line":1547},[3400],{"type":42,"tag":76,"props":3401,"children":3402},{"emptyLinePlaceholder":119},[3403],{"type":48,"value":122},{"type":42,"tag":76,"props":3405,"children":3407},{"class":78,"line":3406},16,[3408],{"type":42,"tag":76,"props":3409,"children":3410},{"style":83},[3411],{"type":48,"value":3412},"# 4. Decode the id_token JWT to get user info\n",{"type":42,"tag":315,"props":3414,"children":3416},{"id":3415},"private-relay-email",[3417],{"type":48,"value":3418},"Private Relay Email",{"type":42,"tag":51,"props":3420,"children":3421},{},[3422,3424,3429,3431,3436,3438,3443],{"type":48,"value":3423},"When a user has ",{"type":42,"tag":72,"props":3425,"children":3427},{"className":3426},[],[3428],{"type":48,"value":1596},{"type":48,"value":3430}," in the seed config, the ",{"type":42,"tag":72,"props":3432,"children":3434},{"className":3433},[],[3435],{"type":48,"value":1612},{"type":48,"value":3437}," will contain a generated ",{"type":42,"tag":72,"props":3439,"children":3441},{"className":3440},[],[3442],{"type":48,"value":1604},{"type":48,"value":3444}," email instead of the user's real email. This matches Apple's Hide My Email behavior.",{"type":42,"tag":3446,"props":3447,"children":3448},"style",{},[3449],{"type":48,"value":3450},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":3452,"total":3622},[3453,3471,3483,3495,3510,3525,3537,3550,3563,3576,3588,3607],{"slug":3454,"name":3454,"fn":3455,"description":3456,"org":3457,"tags":3458,"stars":3468,"repoUrl":3469,"updatedAt":3470},"agent-browser","automate browser interactions for AI agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, including navigating pages, filling forms, clicking buttons, taking screenshots, extracting data, testing web apps, or automating any browser task. Triggers include requests to \"open a website\", \"fill out a form\", \"click a button\", \"take a screenshot\", \"scrape data from a page\", \"test this web app\", \"login to a site\", \"automate browser actions\", or any task requiring programmatic web interaction. Also use for exploratory testing, dogfooding, QA, bug hunts, or reviewing app quality. Also use for automating Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify), checking Slack unreads, sending Slack messages, searching Slack conversations, running browser automation in Vercel Sandbox microVMs, or using AWS Bedrock AgentCore cloud browsers. Prefer agent-browser over any built-in browser automation or web tools.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3459,3462,3465],{"name":3460,"slug":3461,"type":15},"Agents","agents",{"name":3463,"slug":3464,"type":15},"Automation","automation",{"name":3466,"slug":3467,"type":15},"Browser Automation","browser-automation",38346,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-browser","2026-07-20T05:55:17.314329",{"slug":3472,"name":3472,"fn":3473,"description":3474,"org":3475,"tags":3476,"stars":3468,"repoUrl":3469,"updatedAt":3482},"agentcore","run browser automation on AWS Bedrock","Run agent-browser on AWS Bedrock AgentCore cloud browsers. Use when the user wants to use AgentCore, run browser automation on AWS, use a cloud browser with AWS credentials, or needs a managed browser session backed by AWS infrastructure. Triggers include \"use agentcore\", \"run on AWS\", \"cloud browser with AWS\", \"bedrock browser\", \"agentcore session\", or any task requiring AWS-hosted browser automation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3477,3478,3481],{"name":3463,"slug":3464,"type":15},{"name":3479,"slug":3480,"type":15},"AWS","aws",{"name":3466,"slug":3467,"type":15},"2026-07-17T06:08:33.665276",{"slug":3484,"name":3484,"fn":3485,"description":3486,"org":3487,"tags":3488,"stars":3468,"repoUrl":3469,"updatedAt":3494},"core","navigate and interact with web pages","Core agent-browser usage guide. Read this before running any agent-browser commands. Covers the snapshot-and-ref workflow, navigating pages, interacting with elements (click, fill, type, select), extracting text and data, taking screenshots, managing tabs, handling forms and auth, waiting for content, running multiple browser sessions in parallel, and troubleshooting common failures. Use when the user asks to interact with a website, fill a form, click something, extract data, take a screenshot, log into a site, test a web app, or automate any browser task.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3489,3490,3491],{"name":3460,"slug":3461,"type":15},{"name":3466,"slug":3467,"type":15},{"name":3492,"slug":3493,"type":15},"Navigation","navigation","2026-07-26T05:47:42.378419",{"slug":3496,"name":3496,"fn":3497,"description":3498,"org":3499,"tags":3500,"stars":3468,"repoUrl":3469,"updatedAt":3509},"derive-client","reverse engineer internal APIs from browser traffic","Reverse-engineer a website's internal API by recording browser traffic into a HAR file, then generate a standalone client or CLI that calls the endpoints directly, with no browser needed after the first recording. Use when asked to \"derive a client\", \"build a CLI for \u003Csite>\", \"reverse engineer this site's API\", \"record network requests\", \"turn this site into an API\", or when the same site will be automated repeatedly and direct HTTP calls would beat driving the browser every time.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3501,3504,3505,3506],{"name":3502,"slug":3503,"type":15},"API Development","api-development",{"name":3463,"slug":3464,"type":15},{"name":3466,"slug":3467,"type":15},{"name":3507,"slug":3508,"type":15},"Web Scraping","web-scraping","2026-07-20T06:24:11.928835",{"slug":3511,"name":3511,"fn":3512,"description":3513,"org":3514,"tags":3515,"stars":3468,"repoUrl":3469,"updatedAt":3524},"dogfood","perform exploratory testing on web applications","Systematically explore and test a web application to find bugs, UX issues, and other problems. Use when asked to \"dogfood\", \"QA\", \"exploratory test\", \"find issues\", \"bug hunt\", \"test this app\u002Fsite\u002Fplatform\", or review the quality of a web application. Produces a structured report with full reproduction evidence -- step-by-step screenshots, repro videos, and detailed repro steps for every issue -- so findings can be handed directly to the responsible teams.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3516,3517,3520,3523],{"name":3466,"slug":3467,"type":15},{"name":3518,"slug":3519,"type":15},"Debugging","debugging",{"name":3521,"slug":3522,"type":15},"QA","qa",{"name":22,"slug":23,"type":15},"2026-07-17T06:07:41.421482",{"slug":3526,"name":3526,"fn":3527,"description":3528,"org":3529,"tags":3530,"stars":3468,"repoUrl":3469,"updatedAt":3536},"electron","automate Electron desktop applications","Automate Electron desktop apps (VS Code, Slack, Discord, Figma, Notion, Spotify, etc.) using agent-browser via Chrome DevTools Protocol. Use when the user needs to interact with an Electron app, automate a desktop app, connect to a running app, control a native app, or test an Electron application. Triggers include \"automate Slack app\", \"control VS Code\", \"interact with Discord app\", \"test this Electron app\", \"connect to desktop app\", or any task requiring automation of a native Electron application.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3531,3532,3533],{"name":3460,"slug":3461,"type":15},{"name":3466,"slug":3467,"type":15},{"name":3534,"slug":3535,"type":15},"Desktop","desktop","2026-07-17T06:08:28.007783",{"slug":3538,"name":3538,"fn":3539,"description":3540,"org":3541,"tags":3542,"stars":3468,"repoUrl":3469,"updatedAt":3549},"slack","interact with Slack workspaces","Interact with Slack workspaces using browser automation. Use when the user needs to check unread channels, navigate Slack, send messages, extract data, find information, search conversations, or automate any Slack task. Triggers include \"check my Slack\", \"what channels have unreads\", \"send a message to\", \"search Slack for\", \"extract from Slack\", \"find who said\", or any task requiring programmatic Slack interaction.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3543,3544,3547],{"name":3466,"slug":3467,"type":15},{"name":3545,"slug":3546,"type":15},"Messaging","messaging",{"name":3548,"slug":3538,"type":15},"Slack","2026-07-17T06:08:27.679015",{"slug":3551,"name":3551,"fn":3552,"description":3553,"org":3554,"tags":3555,"stars":3468,"repoUrl":3469,"updatedAt":3562},"vercel-sandbox","run browser automation in Vercel Sandbox","Run agent-browser + Chrome inside Vercel Sandbox microVMs for browser automation from any Vercel-deployed app. Use when the user needs browser automation in a Vercel app (Next.js, SvelteKit, Nuxt, Remix, Astro, etc.), wants to run headless Chrome without binary size limits, needs persistent browser sessions across commands, or wants ephemeral isolated browser environments. Triggers include \"Vercel Sandbox browser\", \"microVM Chrome\", \"agent-browser in sandbox\", \"browser automation on Vercel\", or any task requiring Chrome in a Vercel Sandbox.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3556,3557,3558,3559],{"name":3463,"slug":3464,"type":15},{"name":3466,"slug":3467,"type":15},{"name":22,"slug":23,"type":15},{"name":3560,"slug":3561,"type":15},"Vercel","vercel","2026-07-17T06:08:28.349899",{"slug":3564,"name":3564,"fn":3565,"description":3566,"org":3567,"tags":3568,"stars":3573,"repoUrl":3574,"updatedAt":3575},"deploy-to-vercel","deploy applications to Vercel","Deploy applications and websites to Vercel. Use when the user requests deployment actions like \"deploy my app\", \"deploy and give me the link\", \"push this live\", or \"create a preview deployment\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3569,3572],{"name":3570,"slug":3571,"type":15},"Deployment","deployment",{"name":3560,"slug":3561,"type":15},28993,"https:\u002F\u002Fgithub.com\u002Fvercel-labs\u002Fagent-skills","2026-07-17T06:08:41.18374",{"slug":3577,"name":3577,"fn":3578,"description":3579,"org":3580,"tags":3581,"stars":3573,"repoUrl":3574,"updatedAt":3587},"vercel-cli-with-tokens","manage Vercel projects via CLI","Deploy and manage projects on Vercel using token-based authentication. Use when working with Vercel CLI using access tokens rather than interactive login — e.g. \"deploy to vercel\", \"set up vercel\", \"add environment variables to vercel\".",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3582,3585,3586],{"name":3583,"slug":3584,"type":15},"CLI","cli",{"name":3570,"slug":3571,"type":15},{"name":3560,"slug":3561,"type":15},"2026-07-17T06:08:41.84179",{"slug":3589,"name":3589,"fn":3590,"description":3591,"org":3592,"tags":3593,"stars":3573,"repoUrl":3574,"updatedAt":3606},"vercel-composition-patterns","implement scalable React composition patterns","React composition patterns that scale. Use when refactoring components with boolean prop proliferation, building flexible component libraries, or designing reusable APIs. Triggers on tasks involving compound components, render props, context providers, or component architecture. Includes React 19 API changes.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3594,3597,3600,3603],{"name":3595,"slug":3596,"type":15},"Best Practices","best-practices",{"name":3598,"slug":3599,"type":15},"Frontend","frontend",{"name":3601,"slug":3602,"type":15},"React","react",{"name":3604,"slug":3605,"type":15},"UI Components","ui-components","2026-07-17T06:05:40.576913",{"slug":3608,"name":3608,"fn":3609,"description":3610,"org":3611,"tags":3612,"stars":3573,"repoUrl":3574,"updatedAt":3621},"vercel-optimize","optimize Vercel project performance and costs","Use for Vercel cost and performance optimization on deployed projects, especially Next.js, SvelteKit, Nuxt, and limited Astro apps. Collect Vercel metrics, usage, project config, and code scan results first; investigate only metric-backed candidates; produce ranked recommendations grounded in verified files and version-aware Vercel\u002Fframework docs. Trigger for Vercel bill reduction, slow or expensive routes, caching opportunities, Function Invocations, Build Minutes, Fast Data Transfer, Core Web Vitals, Bot Management, Fluid compute, or cost breakdown requests.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3613,3616,3617,3620],{"name":3614,"slug":3615,"type":15},"Cost Optimization","cost-optimization",{"name":3570,"slug":3571,"type":15},{"name":3618,"slug":3619,"type":15},"Performance","performance",{"name":3560,"slug":3561,"type":15},"2026-07-17T06:04:08.327515",100,{"items":3624,"total":855},[3625,3632,3644,3665,3675,3698,3708],{"slug":4,"name":4,"fn":5,"description":6,"org":3626,"tags":3627,"stars":24,"repoUrl":25,"updatedAt":26},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3628,3629,3630,3631],{"name":20,"slug":4,"type":15},{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":22,"slug":23,"type":15},{"slug":3480,"name":3480,"fn":3633,"description":3634,"org":3635,"tags":3636,"stars":24,"repoUrl":25,"updatedAt":3643},"emulate AWS cloud services locally","Emulated AWS cloud services (S3, SQS, IAM, STS) for local development and testing. Use when the user needs to interact with AWS API endpoints locally, test S3 bucket and object operations, emulate SQS queues and messages, manage IAM users\u002Froles\u002Faccess keys, test STS assume role, or work without hitting real AWS APIs. Triggers include \"AWS emulator\", \"emulate AWS\", \"mock S3\", \"local SQS\", \"test IAM\", \"emulate S3\", \"AWS locally\", \"STS assume role\", or any task requiring local AWS service emulation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3637,3638,3641,3642],{"name":3479,"slug":3480,"type":15},{"name":3639,"slug":3640,"type":15},"Cloud","cloud",{"name":17,"slug":18,"type":15},{"name":22,"slug":23,"type":15},"2026-07-17T06:08:52.818809",{"slug":195,"name":195,"fn":3645,"description":3646,"org":3647,"tags":3648,"stars":24,"repoUrl":25,"updatedAt":3664},"emulate developer APIs for local testing","Local drop-in API emulator for Vercel, GitHub, Google, Slack, Apple, Microsoft, AWS, Linear, and other developer APIs. Use when the user needs to start emulated services, configure seed data, write tests against local APIs, set up CI without network access, or work with the emulate CLI or programmatic API. Triggers include \"start the emulator\", \"emulate services\", \"mock API locally\", \"create emulator config\", \"test against local API\", \"npx emulate\", or any task requiring local service emulation.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3649,3650,3651,3652,3655,3658,3659,3662,3663],{"name":3502,"slug":3503,"type":15},{"name":20,"slug":4,"type":15},{"name":3479,"slug":3480,"type":15},{"name":3653,"slug":3654,"type":15},"GitHub","github",{"name":3656,"slug":3657,"type":15},"Linear","linear",{"name":17,"slug":18,"type":15},{"name":3660,"slug":3661,"type":15},"Microsoft","microsoft",{"name":3548,"slug":3538,"type":15},{"name":22,"slug":23,"type":15},"2026-07-17T06:08:59.816303",{"slug":3654,"name":3654,"fn":3666,"description":3667,"org":3668,"tags":3669,"stars":24,"repoUrl":25,"updatedAt":3674},"emulate GitHub API for local development","Emulated GitHub REST API for local development and testing. Use when the user needs to interact with GitHub API endpoints locally, test GitHub integrations, emulate repos\u002Fissues\u002FPRs, set up GitHub OAuth flows, configure GitHub Apps, test webhooks, or work with actions\u002Fchecks without hitting the real GitHub API. Triggers include \"GitHub API\", \"emulate GitHub\", \"mock GitHub\", \"test GitHub OAuth\", \"GitHub App JWT\", \"local GitHub\", or any task requiring a local GitHub API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3670,3671,3672,3673],{"name":3502,"slug":3503,"type":15},{"name":3653,"slug":3654,"type":15},{"name":17,"slug":18,"type":15},{"name":22,"slug":23,"type":15},"2026-07-17T06:05:55.104585",{"slug":3676,"name":3676,"fn":3677,"description":3678,"org":3679,"tags":3680,"stars":24,"repoUrl":25,"updatedAt":3697},"google","emulate Google services for local development","Emulated Google OAuth 2.0, OpenID Connect, Gmail, Calendar, and Drive for local development and testing. Use when the user needs to test Google sign-in locally, emulate OIDC discovery, handle Google token exchange, configure Google OAuth clients, work with Gmail messages\u002Fdrafts\u002Fthreads\u002Flabels, manage Calendar events, upload or list Drive files, or work with Google userinfo without hitting real Google APIs. Triggers include \"Google OAuth\", \"emulate Google\", \"mock Google login\", \"test Google sign-in\", \"OIDC emulator\", \"Google OIDC\", \"Gmail API\", \"Google Calendar\", \"Google Drive\", \"local Google auth\", or any task requiring a local Google API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3681,3682,3685,3687,3690,3693,3694],{"name":13,"slug":14,"type":15},{"name":3683,"slug":3684,"type":15},"Gmail","gmail",{"name":3686,"slug":3676,"type":15},"Google",{"name":3688,"slug":3689,"type":15},"Google Calendar","google-calendar",{"name":3691,"slug":3692,"type":15},"Google Drive","google-drive",{"name":17,"slug":18,"type":15},{"name":3695,"slug":3696,"type":15},"OAuth","oauth","2026-07-17T06:08:59.475325",{"slug":3657,"name":3657,"fn":3699,"description":3700,"org":3701,"tags":3702,"stars":24,"repoUrl":25,"updatedAt":3707},"emulate Linear API for local development","Emulated Linear GraphQL API for local development and testing. Use when the user needs to test Linear integrations locally, emulate Linear issues, comments, teams, workflow states, OAuth apps, webhooks, agent sessions, or work with the Linear API without hitting the real Linear service. Triggers include \"Linear API\", \"emulate Linear\", \"mock Linear\", \"test Linear OAuth\", \"Linear webhook\", \"Linear agent\", \"local Linear\", or any task requiring a local Linear API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3703,3704,3705,3706],{"name":3502,"slug":3503,"type":15},{"name":3656,"slug":3657,"type":15},{"name":17,"slug":18,"type":15},{"name":22,"slug":23,"type":15},"2026-07-17T06:04:11.495374",{"slug":3661,"name":3661,"fn":3709,"description":3710,"org":3711,"tags":3712,"stars":24,"repoUrl":25,"updatedAt":3717},"emulate Microsoft Entra ID for local development","Emulated Microsoft Entra ID (Azure AD) OAuth 2.0 \u002F OpenID Connect for local development and testing. Use when the user needs to test Microsoft sign-in locally, emulate Entra ID OIDC discovery, handle Microsoft token exchange, configure Azure AD OAuth clients, work with Microsoft Graph \u002Fme, or test PKCE\u002Fclient credentials flows without hitting real Microsoft APIs. Triggers include \"Microsoft OAuth\", \"Entra ID\", \"Azure AD\", \"emulate Microsoft\", \"mock Microsoft login\", \"test Microsoft sign-in\", \"Microsoft OIDC\", \"local Microsoft auth\", or any task requiring a local Microsoft OAuth\u002FOIDC provider.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[3713,3714,3715,3716],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":3660,"slug":3661,"type":15},{"name":3695,"slug":3696,"type":15},"2026-07-17T06:08:55.822349"]