Algolia Firebase and Android integration

In my Android app, I use Firebase as the database. I want to add some search capabilities, and after my research, I found that Algolia is suitable for me.

Algolia Firebase Tutorial explains how to integrate an existing Firebase database with Algolia. In this tutorial, they provide some Node.js code (which I am not familiar with). In the first data collection, I simply copied the integration code, making the necessary changes and launched it on the Windows terminal: the data is now imported from Firebase to Algolia.
But there are other necessary specifications, such as updating, deleting data. They also provide some js codes for this purpose, but I really don't know how to attach these listeners in my android application using this js code.

Can someone give me an idea of ​​how this is done correctly?

+4
source share
1 answer

From the wording of your question, I'm not sure if you want to know how to search for Firebase data in Algolia from an Android application or if you are trying to index / update / delete Firebase data from an Android application.


Search for your data from the Android application

If you want to search your data in an Android app, you need a few guides.

Android Instant Search Guide screenshot

Android API Documentation screenshot

// Android

Android-, : Android , , API- Algolia, Android- Algolia API- , Algolia.

Algolia Security Best Practices, Algolia ( , API Key API), API Algolia Algolia Secured API.

+8

Source: https://habr.com/ru/post/1653682/


All Articles