I have a working Net Maui
application that uses offline DataSync
. I would like to add an ApiKey header to each request but the URL generated does not seem to be correct.
My code is as follows:
....
public class MyHandler : DelegatingHandler
{
protected override async Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken)
{
// Change the request-side here based on the HttpRequestMessage
request.Headers.Add("XApiKey", "abc123");
// Do the request
var response = await base.SendAsync(request, cancellationToken);
// Change the response-side here based on the HttpResponseMessage
// Return the modified response
return response;
}
}
....
var options = new DatasyncClientOptions
{
HttpPipeline = new DelegatingHandler[] { new MyHandler() },
OfflineStore = store
};
....
The response is as below:
{Method: GET, RequestUri: 'https://mybackendservice.azurewebsites.net/tables/location?$orderby=updatedAt&$count=true', Version: 1.1, Content: <null>, Headers:
{
ZUMO-API-VERSION: 3.0.0
User-Agent: Datasync/5.1.0.0 (lang=dotnet6;os=Windows/Microsoft Windows NT 10.0.22621.0;arch=X64;version=5.1.0.0)
X-ZUMO-VERSION: Datasync/5.1.0.0 (lang=dotnet6;os=Windows/Microsoft Windows NT 10.0.22621.0;arch=X64;version=5.1.0.0)
XApiKey: abc123
Accept-Encoding: gzip
}}
https://mybackendservice.azurewebsites.net/tables/location?$orderby=updatedAt&$count=true
https://mybackendservice.azurewebsites.net/tables/location?XApiKey=abc123 (<- I was expecting something like this as the request?)
404 - Not Found
Any help appreciated. Thanks Paul.
(disclaimer: I am the maintainer of Azure Mobile Apps)
You don’t want to add the API key to the query. The query string gets passed down to the TableController{TEntity} in your ASP.NET Core application and is never heard from again. It’s not surprising that it doesn’t work.
What you want to do:
Now you’ve got an API Key middleware that works with any ASP.NET Core application (including ones based on Azure Mobile Apps) and an API Key delegating handler for a standard HTTP Client that you can re-use with the Azure Mobile Apps client. Everything should now work.