I'm working on an Azure Function using Web PubSub and encountering an issue with the validate method. The function is expected to handle connection validation with Abuse protection, but it's consistently returning a 400 status code.
Here's the code snippet for the validate method:
[Function("validate")]
[OpenApiOperation("validate", "Azure PubSub - Connection")]
public static HttpResponseData Validate(
[HttpTrigger(AuthorizationLevel.Function, "options")] HttpRequestData req,
[WebPubSubContextInput] WebPubSubContext wpsReq)
{
return BuildHttpResponseData(req, wpsReq.Response);
}
private static HttpResponseData BuildHttpResponseData(HttpRequestData request,
WebPubSubSimpleResponse wpsResponse)
{
var response = request.CreateResponse();
response.StatusCode = (HttpStatusCode)wpsResponse.Status;
response.Body = response.Body;
foreach (var header in wpsResponse.Headers)
{
response.Headers.Add(header.Key, header.Value);
}
return response;
}
The function is designed to return an HttpResponseData object, and I'm using the WebPubSubContext for handling Web PubSub-related operations.
However, whenever I trigger this function, it returns a 400 status code. I've verified that the request is correctly reaching the function, but something seems off with the response. wpsReq.Response.Status is 400 always.
I have added the response handling method within the
BuildHttpResponseData
to fix the 400 status code issue in the Azure Web PubSub Function'svalidate
method.Code :
Output :
It ran successfully as below.