i started having this error immediately when i added a global variable to my appwrite cloud Global variables
TypeScript
type: process.env.FIREBASE_TYPE,
project_id: process.env.FIREBASE_PROJECT_ID,
private_key_id: process.env.FIREBASE_PRIVATE_KEY_ID,
private_key: process.env.FIREBASE_PRIVATE_KEY,
client_email: process.env.FIREBASE_CLIENT_EMAIL,
client_id: process.env.FIREBASE_CLIENT_ID,
auth_uri: process.env.FIREBASE_AUTH_URI,
token_uri: process.env.FIREBASE_TOKEN_URI,
auth_provider_x509_cert_url: process.env.FIREBASE_AUTH_PROVIDER_CERT_URL,
client_x509_cert_url: process.env.FIREBASE_CERT_URL,
universe_domain: process.env.FIREBASE_UNIVERSE_DOMAIN
};```
TL;DR
Error message "error:0909006C:PEM routines:get_name:no start line" occurring when adding global variables in Appwrite Cloud Variables. The issue arose after including a new global variable for Firebase configuration.
Solution: Ensure the Firebase Private Key is correctly formatted with proper start lines.value from Appwrite Global variable is being returned but issues persist...
Recommended threads
- MongoDb Database Breaks integer[] & bigi...
I've got a table with the below column created. When I try to insert the value `[-3408048000]` into it, the dart sdk cloud function call is successful (no error...
- Missing Invoice
Hi! I need help with billing on my account (marelu@gmail.com). I have never received a single invoice by email. My organization has been on the Pro plan since...
- Appwrite Functions cold start
Hello. I'm seeing really long cold starts on Appwrite Cloud Functions and wanted to know if this is expected. My function just authenticates the user, fetches ...