Authenticate with a web service.
Allows you to sign in a user and act on behalf of that user in a web service.
For example, if you sign in as a user on the Spotify API and give it proper permissions, you can then add songs to the user's Spotify playlists.
On most web services that use OAuth 2.0 you have to create an app on that service that you can then use to sign in the user.
Very important: when creating the app on the web service make sure to set the Redirect URI to https://tasker.joaoapps.com/auth.html. If you really want to host the redirect page yourself make sure to copy the original page's source code and host it somewhere of your choosing. You then need to supply that custom Redirect URI in the Endpoint To Get Code field as a query parameter. For example, if your endpoint to get code is https://api/code and your custom redirect URI is https://myredirecturi/myauth.html you would set Endpoint To Get Code to https://api/code?redirect_uri=https%3A%2F%2Fmyredirecturi%2Fmyauth.html