https://github.com/sebagomez/bitlyhelper
The simplest BitLy SDK for .NET Core to shorten a url
https://github.com/sebagomez/bitlyhelper
bitly csharp url-shortener
Last synced: 2 months ago
JSON representation
The simplest BitLy SDK for .NET Core to shorten a url
- Host: GitHub
- URL: https://github.com/sebagomez/bitlyhelper
- Owner: sebagomez
- Created: 2019-04-25T19:28:06.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-21T16:10:14.000Z (over 2 years ago)
- Last Synced: 2024-10-29T16:21:36.096Z (7 months ago)
- Topics: bitly, csharp, url-shortener
- Language: C#
- Homepage: https://www.nuget.org/packages/Sebagomez.BitLyHelper
- Size: 322 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://github.com/sebagomez/bitlyhelper/actions/workflows/dotnet.yaml)
[](https://www.nuget.org/packages/Sebagomez.BitLyHelper/)# BitLy Helper
The simplest BitLy SDK for .NET Core to shorten a urlGo to https://bitly.com/a/your_api_key to get your API login and key.
That's it, install this package and start shortening your urls!
```c#
BitLyShortener shortener = new BitLyShortener(APILogin, APIKey);
string shortened = await shortener.ShortenUrl("http://www.google.com");
```