Hi everyone,
We're having trouble right now with a development that relies on a data collection service.
Using Production API Credentials
Now that we've built your app with VideoAsk, you can write the app itself using your own client_id and client_secret. Your app will need to generate an access token (and possibly a refresh token as well) to integrate with the VideoAsk APIs. This requires making authorization and authentication requests through your browser-based app.
The first request, GET https://auth.videoask.com/authorize, confirms your client_id, prompts the user to grant the permissions your app requires, and returns a temporary authorization code.
The second request, POST https://api.videoask.com/oauth/token, confirms your temporary authorization code and returns your access token. (this is not a problem)
The https://api.videoask.com/authorize link in your app, including the parameters, the problem is that it needs human intervention, as far as I can see, but maybe I missed something or some possible implementation. You need to navigate over it and authenticate at that point.
Because we couldn't pass the credentials for one of the accounts and you need to open a browser to get the temporary code.
Is there any possibility to pass the data in that get to authenticate before doing the get, or to run something before authenticating?
Thanks
Regards