Asset - Extension Firestore Web (FREE & Open Source & Demonstration)

rIKmAN

Member
I have no use for it but it's awesome that you share this stuff for free Mert, keep up the good work!
 

Mert

Member
Important Update

With the feedback I received, I have updated the extension. It's a major update.
  • No more nasty initialization method. You can initialize your app with
    Code:
    //Create our Firebase Configuration.
    var configMap = ds_map_create();
    configMap[? "apiKey"] = ".....................................";
    configMap[? "authDomain"] = ".....................................";
    configMap[? "databaseURL"] = ".....................................";
    configMap[? "projectId"] = ".....................................";
    configMap[? "storageBucket"] = ".....................................";
    configMap[? "messagingSenderId"] = ".....................................";
    configMap[? "appId"] = ".....................................";
    firestore_web_debug_mode(true);
    firestore_web_init(configMap,true);
  • No more callback functions. These have used Javascript eval to transfer data from Javascript to GML. Now, the data is retrieved via Social Async Event (Check here for updated documentation)
  • Added firestore_web_document_delete function to delete documents from the database.
 
Last edited:
Top