AzUrlShortener
AzUrlShortener copied to clipboard
An simple and easy Url Shortener
After logging into TinyBlazorAdmin and going to the URL Manager, I receive a message stating "an unhandled error has occured. Reload". When I click reload, it brings me to a...
I have some APIs create using Azure Logic Apps, for example one that turn on/off a VM. POST: https://prod-70.eastus.logic.azure.com:443/workflows/xxxxxxxxxxxxxxxxxxxxxxxxx/triggers/manual/paths/invoke?api-version=2016-10-01&sp=%2Ftriggers%2Fmanual%2Frun&sv=1.0&sig=ranMC4LmgGovLac-d6r2IN0m25CX_nf6ou6JOufEpaw it works very well, I created a short URL using TinyBlazorAdmin...
Similar to issue #100 but more related to the urlshortener method, if you use a custom domain in Azure and DO NOT specify this in your app settings in Azure,...
`"ShortUrl": "http://c5m.ca/20"` Everyone will be able to see your other users url. No privacy in this shortner.
I noticed that currently redirects require vanities to be exactly as added to the database. It would be nice to have these handled as case insensitive instead so that marketing...
Hi, I am trying to onboard to the new v2 API. I only need the backend, which I have already deployed. I have also set up a new Identity Provider...
Hey there! A few comments what I discovered during my testing today: 1. Using `HTTP/1.1 301 Moved Permanently` to redirect content instead of `HTTP/1.1 302 Found` would be a better...
It is totally possible to migrate from V1 to V2. We just need to document de process. I suggest adding a file named `migration-v1-to-v2.md` at the root with a step...
In `UrlShortener.cs` around line 109 the cleaning should be inside the object `ShortUrlEntity` string longUrl = input.Url.Trim(); string vanity = string.IsNullOrWhiteSpace(input.Vanity) ? "" : input.Vanity.Trim(); string title = string.IsNullOrWhiteSpace(input.Title) ?...
Added expire date functionality with help from Azure Service Bus, with its schedule feature and the que trigger from Azure Functions. If you know a better way to achieve this...