You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Ombi/src/Ombi.Api.Telegram/TelegramApi.cs

34 lines
797 B

using System;
using System.Net.Http;
using System.Threading.Tasks;
namespace Ombi.Api.Telegram
{
public class TelegramApi : ITelegramApi
{
public TelegramApi(IApi api)
{
_api = api;
}
private readonly IApi _api;
private const string BaseUrl = "https://api.telegram.org/";
public async Task Send(string message, string botApi, string chatId, string parseMode)
{
var request = new Request($"bot{botApi}/sendMessage", BaseUrl, HttpMethod.Post);
var body = new
{
text = message,
parse_mode = parseMode,
chat_id= chatId
};
request.AddJsonBody(body);
await _api.Request(request);
}
}
}