Kirk Marple
Kirk Marple

Reputation: 343

Azure Logic App: passing JWT token

I'm looking to have an async workflow, which looks like this:

Optimally, I want to flow a JWT token through this workflow, so we can maintain authorization from the original API App, into the async-called endpoint.

Are there any models for passing JWT tokens through the Logic App connectors, to maintain authorization? Or would this have to be hacked together?

Thanks, Kirk

Upvotes: 7

Views: 985

Answers (1)

Killianti
Killianti

Reputation: 33

As far as I know, there's not a secure way to pass the token through the entire process. I would just pass a collection of the claims through each step since authentication is done in the first step of the process, and authorization is the only thing that matters after that. For Service Bus, the claims can be passed somewhere in the content data or in the custom properties.

Upvotes: 1

Related Questions