π¦ ClawHub
Firebase
by @byungkyu
Firebase Management API integration with managed OAuth. Manage Firebase projects, web apps, Android apps, and iOS apps. Use this skill when users want to lis...
π‘ Examples
# List Firebase projects
python <<'EOF'
import urllib.request, os, json
req = urllib.request.Request('https://api.maton.ai/firebase/v1beta1/projects')
req.add_header('Authorization', f'Bearer {os.environ["MATON_API_KEY"]}')
print(json.dumps(json.load(urllib.request.urlopen(req)), indent=2))
EOF
π Tips & Best Practices
1:PROJECT_NUMBER:PLATFORM:HASHupdateMask query parameter specifying which fields to update (e.g., ?updateMask=displayName)/firebase/v1beta1/operations/{operationId}curl -g when URLs contain brackets to disable glob parsingjq or other commands, environment variables like $MATON_API_KEY may not expand correctly in some shell environmentsTERMINAL
clawhub install firebase