'" Error While testing the logicapps the callback url for service bus action is not loaded"
The 'ListCallbackUrl' is not supported for 'Servicebus send message triggers action "'. This is my logic apps workflow: { "definition": { "$schema": "https://schema.management.azure.com/providers/Microsoft.Logic/schemas/2016-06-01/workflowdefinition.json#", "actions": { "Send_message": { "type": "ApiConnection", "inputs": { "host": { "connection": { "referenceName": "servicebus" } }, "method": "post", "body": { "ContentData": "@{base64('success')}" }, "path": "/@{encodeURIComponent(encodeURIComponent('test'))}/messages", "queries": { "systemProperties": "None" } }, "runAfter": {} }, "Response": { "type": "Response", "kind": "http", "inputs": { "statusCode": 200, "body": "success" }, "runAfter": { "Send_message": [ "Succeeded" ] } } }, "triggers": { "manual": { "type": "Request", "kind": "Http", "inputs": {} } }, "contentVersion": "1.0.0.0", "outputs": {} }, "kind": "Stateful" }
Below is the error that I am getting :
{StatusCode: 404, ReasonPhrase: 'Not Found', Version: 1.1, Content: System.Net.Http.HttpConnectionResponseContent, Headers:
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
