I’m relatively new to Bubble and trying to access the data in my bubble database through an
Android app.
The Android app is developed native using Android Studios.
What I wanna do is this:
Enter username and password into my app, check if the user exists and the entered password is correct. If yes, forward to bubble.
What I have until now: My Website (dev, not live!), few users in the database and my Android App.
What I know need is: How can I connect my Android app with the database?
Do I need to generate the API? How to work with JSON Web Token?
Until now, I always accessed to web data through:
String url = “some url”;
But this time, it doesn’t work.
Maybe this is a silly question, but I would be really happy if someone could help me.
And I have to stay in development mode.
So, thank you for your fast reply.
But I have to stay native Android, since I have to access the data from an already existing app.
Isn’t there a way to only read data from bubble?
Yeah, your Bubble can expose a REST API that lets you grab data from it and populate the mobile app. There’s a decent amount of content in the documentation about the API, have you checked there?
Thanks a lot @andrewgassen! I didn’t check the manual only the docs.
But I still have open questions about creating the endpoint.
I want the user to log in his username and password and then get his phone number etc. back.
I tried to define a checkuser workflow (see screenshots).
So, I want to post the username within the request (already done) and retrieve the phone number of this user.