If you can configure the Auth in the authentication part of your API, this is the best thing. Authentication process will be automatically managed by Bubble for each API Call.
If not, you need to get the token and use it in your API call. The Token API Call will be of type “data” and you will be able to use it directly in the other API call that need a token.
For example, you have a call “Get User”
You configure it with header: Authorization: Bearer (public)
In the designer, Where you need to Call Get User, you will have to configure the header. Just add Get Data from API Call Get Token’s access token to complete the Bearer token.
If you provide link to API Doc, this is easier to know if you should be able to use the Authorization part or not.
I am trying to implement this now and I am not sure that I’ve done it correctly.
Please take a look at my screenshots. I can’t seem to know what to do with the access token. I’ve added the shared headers according to documentation.
I setup my net call in API connector and tried to bring initial call into a workflow when button is clicked.
I need to then use Access Token to pick up a bunch of input fields and POST through API to next destination.
Please Advise as I believe my issue may be more with understanding Bubbles process.
Can you post a screenshot of you setting in Auth part?
If you manually get the token (with an API Call), you cannot use shared Header. You need to set the header on each call that need the token.
Ok… It appears the documentation states that the token is a JWT or JSON Web Token. I do not have very much experience using them and I setup a separate API call with JWT Authentication as well as the required headers for the call with the subsequent endpoint to POST the data for creating an application.
I am really starting to confuse myself as I am trying to learn the Bubble platform on the fly while creating this dashboard.
Sorry to bother you. I’ve been doing some research and testing on my own with little to no luck but it is helping me learn the Bubble platform so the investment on time is invaluable.
I am wondering if you think I may be able to accomplish this workflow by using Custom States and once I obtain the access token it is essentially saved on the page and then used in the next POST request through API Connector.
It is just a random thought and I figured you may have some experience with this type of scenario.