UniTube is an open source YouTube client built to bring an amazing experience to the Universal Windows Platform (UWP)
We develop it because we like to program and we like the UWP (Universal Windows Platform).
We don't know if many people would use the app, but if even we are the only users, we would continue developing.
We have a spanish group on Telegram. If you want to join click here
IMPORTANT: You MUST have Visual Studio 2017 in order to compile this project.
- Go to the Google Developers Console.
- Select or create a project.
- On the left sidebar, select API and authentication. In the API list, make sure the status in ON for version 3 of the YouTube data API.
- On the left sidebar, select Credentials.
- The API supports two types of credentials. Create both:
- OAuth 2.0
- API keys
- Clone this repo.
- Create a new file inside
UniTube-UWP/UniTube.Core
and name itClient.Secrets.cs
:
namespace UniTube.Core
{
public static partial class Client
{
static Client()
{
ApiKey = "your_api_key";
ClientId = "your_client_id";
ClientSecret = "your_client_secret";
}
}
}
- Replace
your_api_key
,your_client_id
andyour_client_secret
with the data obtained from step 5.
- Trending videos
- Search videos
- Fluent Design System
- Live Tile
- Play videos
- Manage multiple accounts
- Cast videos to any screen
- Save videos
- Upload videos
- and more...