You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have 2 logic apps in the same resource group, that I send through the LogicAppTemplateCreator. One generates the template just fine, the other generates this error and generates a blank template:
The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal
character among the padding characters.
Any idea what is wrong?
The text was updated successfully, but these errors were encountered:
It looks like it is trying to Base64Decode a string in the AddParameterForMetadataBase64.
As a workaround I commented out the Base64Decode part, and then it worked for me. //var param = AddTemplateParameter(parametername, "string", Base64Decode(base64string)); var param = AddTemplateParameter(parametername, "string", base64string);
I have 2 logic apps in the same resource group, that I send through the LogicAppTemplateCreator. One generates the template just fine, the other generates this error and generates a blank template:
The input is not a valid Base-64 string as it contains a non-base 64 character, more than two padding characters, or an illegal
character among the padding characters.
Any idea what is wrong?
The text was updated successfully, but these errors were encountered: