Aggiornamenti immediati della piattaforma (10-21 dicembre)
Zoho ha implementato diversi aggiornamenti nel periodo dal 10 al 21 dicembre che influiscono sul modo in cui si sincronizzano i file, si risponde ai ticket di supporto e si integra con sistemi di terze parti. Mentre alcuni di questi aggiornamenti rappresentano miglioramenti delle funzionalità, altri comportano modifiche critiche alle policy di sicurezza che richiedono attenzione immediata.
⚠️ Azione richiesta entro il 31 dicembre 2025
If you're using the default Zoho OAuth connector or embedded credentials in Deluge scripts, you must take action before December 31, 2025 to avoid breaking your integrations. Keep reading for details.
WorkDrive TrueSync: supporto desktop Linux
Zoho WorkDrive TrueSync now officially supports Linux desktop environments, giving your sync-agent workflows equal footing across Windows, macOS, and Linux platforms.
Cosa significa per te
- Cross-Platform Parity: Ubuntu and Fedora desktop users can now use TrueSync just like Windows and macOS users
- Sync-Agent Workflows: File watchers, filesystem integrations, and endpoint sync operations now work seamlessly on Linux
- Developer-Friendly: Development teams using Linux workstations can sync files directly without workarounds
- Server Integration: Easier integration with Linux-based servers and automation scripts
Prova WorkDrive TrueSync su Linux
If you're running Ubuntu or Fedora, download the new WorkDrive TrueSync client and experience seamless file synchronization across all your devices.
Avvia prova gratuita 15-day free trial - Includes in Zoho OneDettagli tecnici
Il client Linux TrueSync supporta:
- Real-time file synchronization
- Selective sync (choose which folders to sync locally)
- Team Folders collaboration
- Version history and conflict resolution
- Offline access to synced files
Zoho Desk: risposta di massa e miglioramenti dell'intelligenza artificiale
Zoho Desk December updates bring two major improvements for support teams: mass-reply templates with snippets and expanded Zia AI assistance inside tickets.
1. Modelli di risposta di massa + snippet
Gli agenti dell'assistenza possono ora rispondere in modo uniforme su larga scala quando gestiscono più ticket con problemi simili. Ciò è particolarmente utile per:
- Outage Communications: Send consistent updates to all affected customers
- Product Announcements: Reply to inquiries about new features with standardized responses
- Policy Changes: Ensure all customers receive accurate information
- Seasonal Responses: Holiday hours, shipping updates, or promotional information
2. Assistenza Zia basata sull'intelligenza artificiale
Zia continua ad espandersi all'interno dei ticket con tre funzionalità chiave:
- Ticket Summaries: Automatically generate concise summaries of long ticket threads
- Reply Help: Suggested responses based on ticket context and historical data
- Insights: Sentiment analysis, priority recommendations, and suggested tags
Impatto nel mondo reale
I team di supporto che utilizzano queste funzionalità segnalano:
- 30-40% reduction in response time for common inquiries
- Higher consistency in customer communications
- Faster onboarding for new support agents (AI suggestions serve as training)
- Better ticket prioritization through Zia's insights
Migliora il tuo supporto con Zoho Desk
Experience AI-powered support ticketing with Zoho Desk. Start your free trial today.
Try Zoho Desk Free 15-day free trial - Included in Zoho OneElementi essenziali di piattaforma e automazione
Diverse funzionalità principali della piattaforma rimangono invariate ma sono fondamentali da comprendere per le tue integrazioni e automazioni:
Scrivi lavori asincroni in blocco in CRM
Core Bulk Write async jobs in Zoho CRM remain asynchronous and callback/status-driven. No changes in this release window, but here's what you need to know:
- Bulk operations continue to use callbacks for completion notifications
- Status checks remain the recommended method for monitoring long-running jobs
- No breaking changes to existing bulk write implementations
- Rate limits and quotas unchanged
Firma HMAC del webhook
Webhook HMAC signing practices remain in place for secure webhook verification. Important: Projects and Sign include HMAC headers that you should always validate in your webhook receivers.
Best Practice: Always Validate HMAC Signatures
// Example webhook validation (Node.js)
const crypto = require('crypto');
function validateWebhook(payload, signature, secret) {
const hmac = crypto
.createHmac('sha256', secret)
.update(JSON.stringify(payload))
.digest('hex');
return hmac === signature;
}
// In your webhook handler
if (!validateWebhook(req.body, req.headers['x-zoho-signature'], SECRET)) {
return res.status(401).send('Invalid signature');
}
Registra la semantica Upsert
La semantica di Records Upsert non è cambiata in questo breve ciclo di rilascio. Nessun annuncio di rottura sul comportamento dell'API nella finestra dal 10 al 21 dicembre. La logica di inserimento esistente continua a funzionare come previsto.
Cambiamenti politici critici per la sicurezza (azione richiesta)
È qui che devi prestare molta attenzione. Zoho sta apportando due modifiche significative relative alla sicurezza che influenzeranno il modo in cui autentichi le chiamate API e gestisci le connessioni OAuth.
🚨 Cambiamenti decisivi in vista
These are not optional upgrades. If you don't take action before the deadlines, your integrations will break. Mark your calendar and plan your updates now.
Deprecazione del connettore OAuth: scadenza 31 dicembre
Scadenza: 31 dicembre 2025
Il connettore Zoho OAuth predefinito verrà deprecato. Dopo il 31 dicembre 2025, le nuove connessioni OAuth non verranno più visualizzate per impostazione predefinita e dovranno essere sostituite con connessioni specifiche del servizio o personalizzate per l'autenticazione API sicura.
Cosa sta cambiando
- Default OAuth Connector Removed: The generic "Zoho OAuth" connector will vanish from connection defaults
- Service-Specific Connections Required: You must create connections specific to each Zoho service (CRM, Books, Desk, etc.)
- Custom OAuth Apps Recommended: For production integrations, create custom OAuth clients in Zoho API Console
- Existing Connections Grandfathered: Connections created before Dec 31 will continue to work (for now), but updates recommended
Perché questo è importante
Il connettore OAuth predefinito era comodo ma comportava rischi per la sicurezza:
- Too broad in scope (access to all Zoho services)
- Harder to audit and monitor
- Violated principle of least privilege
- Difficult to revoke granular access
Come migrare
- Audit Your Connections: List all integrations using the default OAuth connector
- Create Service-Specific Connections: In each Zoho app, go to Setup → Developer Space → Connections
- Create Custom OAuth Clients: Visit Zoho API Console and create dedicated OAuth clients
- Update Your Integrations: Replace default OAuth references with new service-specific connections
- Test Thoroughly: Verify all integrations work with new connections before Dec 31
Cronologia della migrazione
- Now - Dec 20: Audit existing OAuth connections
- Dec 20-25: Create new service-specific connections
- Dec 25-30: Update and test integrations
- Dec 31: Deadline - new default OAuth connections disabled
Diluvio di modifiche alla sicurezza di invokeURL
Stato: già in vigore
Deluge's invokeURL deprecation of embedded credentials has already taken effect. You can no longer use inline authentication in invokeURL calls. You must now use Connections instead of inline auth for secure service calls.
Cosa è cambiato
In precedenza, potevi incorporare le credenziali direttamente nelle chiamate invokeURL di Deluge in questo modo:
❌ Old Method (No Longer Works)
// DEPRECATED - DO NOT USE
response = invokeurl
[
url: "https://api.example.com/endpoint"
type: GET
parameters: {"username": "user@example.com", "password": "secretpass"}
];
Now you must use Connections:
✅ New Method (Required)
// Create a Connection in Zoho first, then reference it
response = invokeurl
[
url: "https://api.example.com/endpoint"
type: GET
connection: "your_connection_name"
];
Perché è stata apportata questa modifica
- Security: Credentials embedded in code can be exposed through logs, error messages, or code exports
- Auditability: Connections provide clear audit trails of which integrations access which services
- Rotation: Update credentials in one place (Connection settings) rather than hunting through scripts
- Compliance: Meets security compliance requirements for credential management
Come aggiornare i tuoi script
- Identify Affected Scripts: Search your Deluge code for invokeURL calls with embedded credentials
- Create Connections: For each external service, create a Connection in Zoho
- Update invokeURL Calls: Replace credential parameters with connection references
- Test Thoroughly: Verify all API calls work with the new Connection-based approach
- Remove Old Credentials: Delete embedded credentials from your code
Tipi di connessione disponibili
- OAuth 2.0 (recommended for most APIs)
- API Key authentication
- Basic Authentication (username/password)
- Custom headers and parameters
La tua lista di controllo delle azioni da intraprendere
Ecco il tuo piano d'azione prioritario per questi aggiornamenti di dicembre:
🔴 Critico - Azione richiesta entro il 31 dicembre
- ✅ Audit all OAuth connections for default Zoho OAuth connector usage
- ✅ Create service-specific OAuth connections for each Zoho app you integrate
- ✅ Update integrations to use new OAuth connections
- ✅ Test all integrations before Dec 31 deadline
- ✅ Scan Deluge scripts for invokeURL calls with embedded credentials
- ✅ Create Connections for all external API calls
- ✅ Update and test all Deluge scripts
🟡 Importante: aggiornamenti consigliati
- 📋 Upgrade to WorkDrive TrueSync on Linux if you use Ubuntu/Fedora
- 📋 Enable Zoho Desk mass-reply templates for your support team
- 📋 Configure Zia AI assistance in Desk for faster ticket responses
- 📋 Review webhook HMAC validation in your integrations
- 📋 Document your OAuth connection strategy for future maintenance
🟢 Opzionale - Buono a sapersi
- 📖 Review Bulk Write API patterns to ensure best practices
- 📖 Familiarize yourself with upsert semantics for future development
- 📖 Explore new Zia features in other Zoho apps
Hai bisogno di aiuto con questi aggiornamenti?
Se ti senti sopraffatto da queste modifiche alla sicurezza o non sai da dove iniziare, possiamo aiutarti. ZMCOR è specializzato in integrazioni Zoho, sviluppo API e migrazioni di piattaforme.
Assistenza esperta per la migrazione di Zoho
I nostri consulenti Zoho certificati possono verificare la tua configurazione attuale, pianificare la tua strategia di migrazione e implementare le modifiche necessarie prima della scadenza del 31 dicembre.
Schedule Free Consultation No obligation - let's discuss your specific needsServizi che offriamo
- OAuth Migration: Audit and migrate from default OAuth to service-specific connections
- Deluge Script Updates: Convert embedded credentials to secure Connections
- Integration Testing: Comprehensive testing to ensure nothing breaks
- Documentation: Document your new connection architecture
- Training: Train your team on new security best practices
Rimani al passo con gli aggiornamenti di Zoho
Zoho continua a evolversi rapidamente, con nuove funzionalità, miglioramenti della sicurezza e cambiamenti della piattaforma annunciati regolarmente. Gli aggiornamenti di dicembre 2025 sono particolarmente importanti perché comportano modifiche sostanziali che richiedono un'azione.
The key takeaways:
- WorkDrive TrueSync now supports Linux - great for development teams
- Zoho Desk AI features continue to improve support efficiency
- OAuth connector deprecation requires migration by Dec 31
- Deluge embedded credentials are already deprecated - use Connections
Non aspettare fino all'ultimo minuto. Inizia oggi la pianificazione della migrazione, esegui test approfonditi e assicurati che le tue integrazioni continuino a funzionare senza intoppi fino al 2026.
Ottieni la piattaforma Zoho completa
All of these updates are included in Zoho One - 45+ apps for one unified price. No per-app licensing, no surprise fees.
Try Zoho One Free 30-day free trial - Full access to all apps