Ombi/src/Ombi.Api.Telegram/TelegramApi.cs
2017-11-03 21:22:53 +00:00

33 lines
797 B
C#

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);
}
}
}