| name | lokalise-security-basics |
| description | Apply Lokalise security best practices for API tokens and access control.
Use when securing API tokens, implementing least privilege access,
or auditing Lokalise security configuration.
Trigger with phrases like "lokalise security", "lokalise secrets",
"secure lokalise", "lokalise API token security".
|
| allowed-tools | Read, Write, Grep |
| version | 1.0.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
Lokalise Security Basics
Overview
Security best practices for Lokalise API tokens, webhook secrets, and access control.
Prerequisites
- Lokalise SDK installed
- Understanding of environment variables
- Access to Lokalise profile settings
Instructions
Step 1: Configure Environment Variables
LOKALISE_API_TOKEN=abc123...
LOKALISE_WEBHOOK_SECRET=whsec_***
LOKALISE_PROJECT_ID=123456789.abcdef
.env
.env.local
.env.*.local
*.env
Step 2: Token Types and Permissions
| Token Type | Use Case | Permissions |
|---|
| Read-only | CI builds, reporting | Read projects, keys, translations |
| Read-write | Full integration | All CRUD operations |
| OAuth2 | User-facing apps | Scoped per user consent |
const readOnlyClient = new LokaliseApi({
apiKey: process.env.LOKALISE_READ_TOKEN!,
});
const fullAccessClient = new LokaliseApi({
apiKey: process.env.LOKALISE_WRITE_TOKEN!,
});
Step 3: Implement Token Rotation
curl -X GET "https://api.lokalise.com/api2/projects" \
-H "X-Api-Token: $LOKALISE_API_TOKEN_NEW" \
| jq '.projects | length'
export LOKALISE_API_TOKEN="$LOKALISE_API_TOKEN_NEW"
Step 4: Webhook Secret Verification
import crypto from "crypto";
function verifyWebhookSignature(
payload: string,
receivedSecret: string,
expectedSecret: string
): boolean {
return crypto.timingSafeEqual(
Buffer.from(receivedSecret),
Buffer.from(expectedSecret)
);
}
app.post("/webhooks/lokalise", (req, res) => {
const receivedSecret = req.headers["x-secret"] as string;
const expectedSecret = process.env.LOKALISE_WEBHOOK_SECRET!;
if (!verifyWebhookSignature(req.body, receivedSecret, expectedSecret)) {
console.error("Invalid webhook signature");
return res.status(401).json({ error: "Invalid signature" });
}
handleWebhook(req.body);
res.status().({ : });
});
Step 5: Apply Least Privilege
const tokenConfig = {
development: {
token: process.env.LOKALISE_DEV_TOKEN,
projectId: process.env.LOKALISE_DEV_PROJECT,
},
staging: {
token: process.env.LOKALISE_STAGING_TOKEN,
projectId: process.env.LOKALISE_STAGING_PROJECT,
},
production: {
token: process.env.LOKALISE_PROD_TOKEN,
projectId: process.env.LOKALISE_PROD_PROJECT,
},
};
function getLokaliseConfig() {
const env = process.env.NODE_ENV || "development";
return tokenConfig[env as keyof typeof tokenConfig];
}
Output
- Secure API token storage
- Environment-specific access controls
- Webhook signature verification
- Token rotation procedure documented
Error Handling
| Security Issue | Detection | Mitigation |
|---|
| Exposed API token | Git scanning, logs | Rotate immediately |
| Missing .gitignore | Code review | Add .env to ignore |
| Webhook without verification | Security audit | Add signature check |
| Single token for all envs | Config review | Separate per environment |
Examples
Service Account Pattern
const clients = {
reader: new LokaliseApi({
apiKey: process.env.LOKALISE_READ_TOKEN!,
}),
writer: new LokaliseApi({
apiKey: process.env.LOKALISE_WRITE_TOKEN!,
}),
};
async function getTranslations(projectId: string) {
return clients.reader.translations().list({ project_id: projectId });
}
async function updateTranslation(projectId: string, translationId: number, text: string) {
return clients.writer.translations().update(translationId, {
project_id: projectId,
translation: text,
});
}
Secret Scanning Prevention
const dangerousPatterns = [
/LOKALISE_API_TOKEN\s*=\s*["']?[a-zA-Z0-9]{40,}/,
/X-Api-Token:\s*[a-zA-Z0-9]{40,}/,
];
function scanForSecrets(content: string): boolean {
return dangerousPatterns.some(pattern => pattern.test(content));
}
Audit Logging
interface AuditEntry {
timestamp: Date;
action: string;
userId?: string;
projectId: string;
resource: string;
result: "success" | "failure";
metadata?: Record<string, any>;
}
async function auditLog(entry: Omit<AuditEntry, "timestamp">): Promise<void> {
const log: AuditEntry = { ...entry, timestamp: new Date() };
console.log("[AUDIT]", JSON.stringify(log));
await sendToLoggingService(log);
}
await auditLog({
action: "lokalise.keys.create",
projectId: "123456.abc",
resource: "/keys",
: ,
: { : },
});
Security Checklist
## Lokalise Security Checklist
### Token Management
- [ ] API tokens stored in environment variables
- [ ] .env files in .gitignore
- [ ] Different tokens for dev/staging/prod
- [ ] Read-only tokens where possible
- [ ] Token rotation schedule (quarterly)
### Webhook Security
- [ ] HTTPS-only webhook endpoints
- [ ] X-Secret header validated
- [ ] Timing-safe comparison for secrets
### Access Control
- [ ] Minimal team member permissions
- [ ] Project-level access restrictions
- [ ] Regular access audits
### Monitoring
- [ ] Audit logging enabled
- [ ] Failed auth attempts monitored
- [ ] Unusual API usage alerts
CI/CD Secret Management
jobs:
deploy:
steps:
- name: Download translations
env:
LOKALISE_API_TOKEN: ${{ secrets.LOKALISE_API_TOKEN }}
run: npm run i18n:pull
deploy:
variables:
LOKALISE_API_TOKEN: $LOKALISE_API_TOKEN
script:
- npm run i18n:pull
Resources
Next Steps
For production deployment, see lokalise-prod-checklist.