Nour Khaled
04/29/2025, 8:13 PMCeligo AI
04/29/2025, 8:13 PMAI generated answer (using internal Slack threads):Based on the conversations, it seems like the issue is related to the authorization process when making requests to the REST API. The error message
InvalidSignature
indicates that the signature used in the authorization header is not valid. This could be due to a number of reasons such as incorrect encoding of the parameters in the authorization header, incorrect values being used in the signature, or the signature not being escaped properly.
In the first thread, the user is getting a 403 error when making a request from a third party. The error message suggests that there is an issue with the signature in the authorization header. The user is advised to check the request in the login audit trial record and compare the signature with the one calculated by themselves.
In the second thread, the user is having an issue with the authValue
in their request. They found out that they had the request URL in the secret field instead of the token secret, which was causing the issue.
In the third thread, the user is getting intermittent 401 Unauthorized errors when using the REST API. The audit log shows InvalidSignature
as the error. The user is advised to ensure they are encoding the parameters in the authorization header and to consider using a library like RestSharp to handle the authorization.
In all cases, it's important to ensure that the signature used in the authorization header is correctly generated and encoded. This includes making sure that all parameters are correctly included and that any special characters are properly escaped.Celigo AI
04/29/2025, 8:14 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.851371408
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.851076484
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.847258925
Celigo AI
04/29/2025, 8:14 PM