Azure / LogicAppsUX

https://learn.microsoft.com/azure/logic-apps
MIT License
77 stars 84 forks source link

Existing Form Recognizer Actions issue #6155

Closed mvitoloaitana closed 5 hours ago

mvitoloaitana commented 2 days ago

Describe the Bug with repro steps

1, Access your Logic App Workflow

  1. Click on a Form Recognizer action
  2. It is blocked

What type of Logic App Is this happening in?

Consumption (Portal)

Which operating system are you using?

Windows

Are you using new designer or old designer

New Designer

Did you refer to the TSG before filing this issue? https://aka.ms/lauxtsg

Yes

Workflow JSON

"Classifier_": {
                                "type": "ApiConnection",
                                "inputs": {
                                    "host": {
                                        "connection": {
                                            "referenceName": "formrecognizer"
                                        }
                                    },
                                    "method": "post",
                                    "body": "@outputs('Compose_JSON_to_create_file')",
                                    "path": "/documentClassifiers/@{encodeURIComponent('AutodocsTestClassification-S5-v2')}:analyze",
                                    "queries": {
                                        "api-version": "2023-07-31"
                                    }
                                },
                                "runAfter": {
                                    "Compose_JSON_to_create_file": [
                                        "SUCCEEDED"
                                    ]
                                }
                            },

Screenshots or Videos

Image

Browser

Chrome

Additional context

No response

queoStefanWallimann commented 5 hours ago

Hi,

Same issue here with a logic app that was working fine until two days ago. Clicking on the component shows the loading circle only

Image

mvitoloaitana commented 5 hours ago

@queoStefanWallimann The solution is:

  1. Go to code view;
  2. Add to the action path the following: /formrecognizer like this: "path": "/formrecognizer/documentClassifiers/@{encodeURIComponent('AutodocsTestClassification-S5-v2')}:analyze".

It seems Microsoft changed the urls without guaranteeing the retro-compatibility.

queoStefanWallimann commented 4 hours ago

Thanks @mvitoloaitana ... will do