Basic search UI (no download links yet)
This commit is contained in:
15
StreamCinemaLib/Program.cs
Normal file
15
StreamCinemaLib/Program.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using StreamCinema.Webshare;
|
||||
|
||||
class Program
|
||||
{
|
||||
public static HttpClient _http = new HttpClient();
|
||||
|
||||
private static async Task Main(string[] args)
|
||||
{
|
||||
CancellationToken cancel = default;
|
||||
//string a = LinkGenerator.CalculatePassword(fileId: "2kRBqAYQS2", fileName: "bIaFGdkvKiiTBo2_S3E1", salt: "UX8y8Fpa");
|
||||
Uri a = await LinkGenerator.GenerateDownloadLinkAsync(fileId: "2kRBqAYQS2", fileName: "bIaFGdkvKiiTBo2_S3E1", cancel);
|
||||
Console.WriteLine(a);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user