connecting knime to firebase

Can anyone help in giving an exact answer or a workflow of how we connect knime to firebase through both rest api and db connector with the right jdbc deiver

Hello @mh_elhassan,

You would need to have a token when using the REST API nodes as outlined in their documentation:

https://firebase.google.com/docs/database/rest/auth

Specifically this line:

curl "https://<DATABASE_NAME>.firebaseio.com/users/ada/name.json?access_token=<ACCESS_TOKEN>"

which is a GET request for the user ‘ada’.

Also you mention a JDBC driver, but this is not possible because it is NoSQL. (JDBC is meant for SQL type databases)

The closest thing you can get to a JDBC is probably using a SDK such as below:

TL

2 Likes