15 lines
487 B
C#
15 lines
487 B
C#
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);
|
|
}
|
|
} |