Я пытаюсь опубликовать сообщение в Slack, используя их API, и ответ говорит: Waiting for activation
Это мой код:
static async Task<HttpResponseMessage> PostMessage()
{
client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", "xoxb-924542226483-938230541718-gk3vTmwEtOOK01NqO5kW6e0R");
var atttrJson = new stackAttributes { channel = "#cymulateinterview", text = "Good Morning all" };
var json = new JavaScriptSerializer().Serialize(atttrJson);
var buffer = System.Text.Encoding.UTF8.GetBytes(json);
var byteContent = new ByteArrayContent(buffer);
byteContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
var result = await client.PostAsync("https://slack.com/api/chat.postMessage", byteContent);
return result;
}
Чего мне не хватает