If you want users to enter their own client id and secret, you need to process manually. Change auth to none and request a token in API call instead of authotization. Use the token from this call in other calls
Hi as @Jici said you will need to process it manually.
Your user needs to provide the details (client_secret, client_id) somewhere let’s say users have two filed as text type in the database. (client_secret, client_id)
When they sign up or somewhere in the process you will need to get the values of those two fields in a workflow.
When you make the API call in your application you will see there are options (Insert Dynamic data). You will click on that and you will then be able to get the value from those fields. Or simply may be from any input fields (e.g. input client_secret’s value).
Thank you for your help.
Sorry if I’m being annoying.
But I still can’t understand.
When I remove the authentication type, there is no way for me to insert the jSon, how do I send dynamic data in the call?
Is it through the backend of the workflow?
If so, could you let me know.
I already understand that I must collect the secret_id and secret_key through an input.
But I still don’t understand how to do this authentication through the workflow.
Then make another call with the access token in the same section.
In your editor use a button to make the call after successfully completed the first part in API connector.
When the button is clicked create workflow. You will find it in workflow. If you don’t know how to create workflow please learn that first.
In your workflow action search the API by its name, select it you will see a box appears where with two fields (secret and id), if you click on the value you will see right side a blue button appears “Insert Dynamic Data”.
You can then insert dynamic value and get the access token.
In the second step may by you will make another API call with the access token you get from the first step based on users provided value. “Step1’s result” …