Как сделать URL-адрес веб-мессенджера-бота отзывчивым? - PullRequest
0 голосов
/ 11 ноября 2019

Я добавляю URL-адрес веб-бота на Facebook, и он не отвечает на запросы мобильных устройств. Можно ли как-нибудь сделать его отзывчивым?

Вот код:

var reply = message.CreateReply();

var attachment = new
{
    type = "template",
    payload = new
    {
        template_type = "button",
        text = "Great – Request your appointment here",
        buttons = new[]
        {
            new
            {
                type = "web_url",
                url = https://www.varsitycollege.co.za/",
                title = "Book",
                webview_height_ratio = "full",
                messenger_extensions = true,
            },
        },
    },
};

reply.ChannelData = JObject.FromObject(new { attachment });

await turnContext.SendActivityAsync(reply, cancellationToken);
...