We have an Azure Logic App which connects to an external SFTP server via SSH. A couple of days ago the Logic App connector began to fail due to a "Gateway Timeout":
{
"error": {
"code": 504,
"source": "logic-apis-westeurope.azure-apim.net",
"clientRequestId": "********-a74a-4212-93fa-*********",
"message": "BadGateway",
"innerError": {
"status": 504,
"message": "Request to the SFTP server has taken more than '00:00:30' seconds.\r\nclientRequestId: ********-a74a-4212-93fa-*********",
"error": {
"message": "Request to the SFTP server has taken more than '00:00:30' seconds."
},
"source": "sftpwithssh-we.azconn-we.p.azurewebsites.net"
}
}
}
We figured out that the external partner enabled the proxy protocol on their side which is the reason the Azure SFTP SSH connector fails.
Does the SFTP-SSH connector support proxy protocol and if yes how to configure it?
Unfortunately I did not found any information in the documentation:
https://learn.microsoft.com/en-us/connectors/sftpwithssh/
https://learn.microsoft.com/en-us/azure/connectors/connectors-sftp-ssh
Related
I have deployed Healthcare Workspace and HFIR Service to Azure.
I successfully get capability statement and access token.
I'm failing with Get FHIR resource request to get Patient list by Postman.
I can see that this request connects to right App registration by correct secret.
I wonder if API permission of App Registration is correct:
I have given "Azure Healthcare APIs", which has url https://fhir.azurehealthcareapis.com
However Postmain is requesting: https://healthcareworkspace-my123demo.fhir.azurehealthcareapis.com
I wonder where is problem?
https://learn.microsoft.com/en-us/azure/healthcare-apis/fhir/using-postman
Get: {{fhirurl}}/Patient
{
"resourceType": "OperationOutcome",
"id": "1111d698deb63c41b7b0a6731a527b15",
"issue": [
{
"severity": "error",
"code": "forbidden",
"diagnostics": "Authorization failed."
}
]
}
You will also need to assign an application role such as "FHIR Data Contributor" to the client app to access the FHIR service. More info at https://learn.microsoft.com/en-us/azure/healthcare-apis/fhir/configure-azure-rbac-for-fhir
I just started building a webhook following the documentation. I created a sample web api application and published to IIS with a valid url accessible from the internet.
I created a webhook on out authorize.net sandbox account and set the url. I am able to call the POST api method from inside the postman. But when I try to ping the webhook I get error as follow:
https://apitest.authorize.net/rest/v1/webhooks/70884522-6fe8-4e72-9c7e-15bf2b30f778/pings
{
"status": 500,
"reason": "PING_FAILED",
"message": "The ping operation failed with the status code 403",
"correlationId": "5d136ce8-406f-442e-9118-fdde36946d87",
"details": [
{
"message": "Error occured in connecting to the endpoint:http://staging4.dancecompgenie.com/api/Values/Post "
}
]
}
Here is the url on my server.
http://staging4.dancecompgenie.com/api/Values/Post
I am able to successfully call this url in postman and get the result.
I appreciate if you can help me solve the problem.
Im trying to connect Logical Apps with Text Analyzer however i'm seeing this error:
This is the body of the Output:
{ "error": { "code": 502, "message": "The remote name could not be resolved: 'supportticket.cognitiveservices.azure.com'", "source": "logic-apis-northeurope.azure-apim.net", "path": "forward-request", "clientRequestId": "343d9512-c398-4544-a3ec-bbdd26ad22bf" } }
Not sure how to fix it, seems like its on azure end.
Contacted Azure chat support they forwarded me here for a resolution
Before a day, the operation works fine.
https://microsoftgraph.chinacloudapi.cn/v1.0/users/{user_id}/drives
Suddenly, it keeps encounter this error:
{
"error": {
"code": "BadRequest",
"message": "Unable to retrieve user's mysite URL.",
"innerError": {
"request-id": "d50647af-33c2-4503-a6c1-eb046173108c",
"date": "2018-04-03T08:33:58"
}
}
}
I have checked the subscription and APP permission in graph API, all permission is enabled
And I have tested another APP using the same graph API permission which works fine.
Do not know what going wrong here
Thanks you.
I am attempting to use Intune specific beta Graph APIs to assign apps to an iOS managed app protection policy. I am able to create the app policies using the endpoint documented below:
https://graph.microsoft.io/en-us/docs/api-reference/beta/api/intune_mam_iosmanagedappprotection_create
When created via API, the app "deployedCount" is 0 until specific apps are added in the admin console UI.
Now, I am attempting to retrieve apps added to any policy by API using the endpoint documented below.
https://graph.microsoft.io/en-us/docs/api-reference/beta/api/intune_mam_mobileappidentifierdeployment_list
I get a 400 bad request response that appears to say this endpoint either does not exist or is not responding correctly. This seems unlike if I mistyped an endpoint.
Response I receive:
{
"error": {
"code": "No method match route template",
"message": "No OData route exists that match template ~/entityset/key/navigation with http verb GET for request /MAMAdmin/MAMAdminFEService/managedAppPolicies('T_338de6df-386d-4f1b-a51c-a0d189c61722')/mobileAppIdentifierDeployments.",
"innerError": {
"request-id": "79514f29-4dca-48a5-a2de-5d14138577d7",
"date": "2017-02-08T17:46:52"
}
}
}
Response if I mistyped:
{
"error": {
"code": "BadRequest",
"message": "Resource not found for the segment 'asdfasdf'.",
"innerError": {
"request-id": "e86d84ab-f062-4780-af3c-9afae6e7bc82",
"date": "2017-02-08T18:53:29"
}
}
}
Hello this is Alemeshet Alemu from MSFT.
Sorry, the API documentation is a bit out sync. Could you try with $expand?
GET /managedAppPolicies/{managedAppPoliciesId}?$expand=mobileAppIdentifierDeployments
Alemeshet Alemu (MSFT)