StringDot
StringDot

Reputation: 27

Import library to logic app Javascript code step

I am having some issues trying to use hmac for authentication inside a logic app.

I tried to use a javascript step to create the string for authentication based on this solution, but i don't know how to add references to external libraries. I am trying to avoid creating a new function app just to create the string for hmac.

Many thanks!

Upvotes: 2

Views: 1116

Answers (1)

Hury Shen
Hury Shen

Reputation: 15754

As far as I know, we can't import external js libraries to inline code. For this requirement, you can just implement it in azure function and then use the azure function in your logic app. Or you can post a new idea on feedback page to ask azure develop team to add this feature.

Upvotes: 2

Related Questions