You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This error occurs when Python cannot verify SSL certificates, often on macOS or corporate networks.
493
+
494
+
**Solution**: Add SSL certificate path to your environment configuration:
495
+
496
+
```json
497
+
{
498
+
"env": {
499
+
"ODOO_URL": "https://your-odoo.com",
500
+
"ODOO_API_KEY": "your-key",
501
+
"SSL_CERT_FILE": "/etc/ssl/cert.pem"
502
+
}
503
+
}
504
+
```
505
+
506
+
This tells Python where to find the system's SSL certificate bundle for HTTPS connections. The path `/etc/ssl/cert.pem` is the standard location on most systems.
0 commit comments