Hello everyone!I have to do a web service for the first time.This web service will receive a response with a token that I must use in the next call to obtain the information I want.Could someone guide me to do this? Do I need two web services; one to receive the touch and another once I already have the token to receive the response?
Discussion posts and replies are publicly visible
What kind of service are you trying to call? Normally, these steps can (and should be) taken care of by the Connected System. In this case, you'll likely be storing access tokens within the process itself which could be a security issue.
I have to call a web service, collect the token it returns and integrate it into the next call that will return the information I need in my process. I'm considering using appian's "web API" for the calls. maybe you could do it with one connected system and two integrations?The problem is to collect that token and take it to the next integration
Yeah, that is a common pattern. Auth token vs access token.
Would be 1 connected system that handles getting both and 1 integration. This way, your access token is not in plaintext in your process.