I'm trying to implement an app according to the stages written in:
https://developers.google.com/actions/get-started/
I follow all stages, but there is some problem with connecting the Webhook to the app.
When trying to operate the app and connect to the Webhook, I get the following error in the json file:
"status": {
"code": 206,
"errorType": "partial_content",
"errorDetails": "Webhook call failed. Error: Webhook response was empty."
},
Does anyone know what might be the problem?
Related
I’m new in the development, and I’m facing an issue with salesforce connect app.
We are using azure logic apps to integrate salesforce with Microsoft products, we had some processes in place working fine for the last few years but from last week all of them were disconnected, the error message being thrown is:
"status": 401, "message": "Salesforce failed to complete task:
Message: This session is not valid for use with the REST
API\r\nclientRequestId: XXXXXXXXXX", "error": null, "source":
"Salesforce.Common", "errors": []
code": "Unauthorized",
"message": "Failed to refresh access token for service: salesforce. Correlation Id=XXXXXXX, UTC TimeStamp=8/15/2022
9:09:38 AM, Error: OAuth 2 access token refresh failed. Client ID and
secret sent in form body. Response status code=BadRequest. Response
body: '{"error":"invalid_grant","error_description":"expired
access/refresh token"}'.
I’ve reconnected azure with salesforce and granted all permission, including Perform requests at any time
I had no luck, after a few minutes it disconnected again… so I installed the Azure Connected App, and refreshed the connection… still no luck, it keeps disconnecting throwing the same error message.
However, I kept getting disconnected from and getting the same error message.
Any help would be much appreciated.
I created an azure event Topic and added an azure function (event trigger type) as a subscription. when trying to send a request through postman I get undefined API version.
Error:
{
"error": {
"code": "ApiVersionUnspecified",
"message": "An API version is required, but was not specified."
}
}
This is the error you get:
As Roman Kiss says, you should use URI like below:
https://<topic-endpoint>?api-version=2018-01-01
(And also you need to authorize it.)
I received this error when I was submitting a GET request instead of a POST request.
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
I have a Logic App with Twitter connector that searches for tweets with a keyword. It has been working fine but now it suddenly started failing.
When I look at the output of the Twitter connector, below is the body it returns.
"body": {
"status": 500,
"source": "https://twitterconnectorce8207a3c04d4ebdbf35f4e3fdcee1a4.azurewebsites.net/search/tweets?Query=AisChinaSupport&MaxResults=20",
"message": "An error has occurred."
}