第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

在 Bot 框架中將 Facebook 通用模板的 JSON 代碼轉(zhuǎn)換為 C#

在 Bot 框架中將 Facebook 通用模板的 JSON 代碼轉(zhuǎn)換為 C#

C#
紫衣仙女 2022-10-23 14:02:48
我很難將這個(gè)通用的 facebook 模板轉(zhuǎn)換為 C#。我不確定我是否正確轉(zhuǎn)換了它。以下是我嘗試但未在 Messenger 上呈現(xiàn)的代碼。謝謝你。    curl -X POST -H "Content-Type: application/json" -d '{  "recipient":{    "id":"<PSID>"  },  "message":{    "attachment":{      "type":"template",      "payload":{        "template_type":"generic",        "elements":[           {            "title":"Welcome!",            "image_url":"https://petersfancybrownhats.com/company_image.png",            "subtitle":"We have the right hat for everyone.",            "default_action": {              "type": "web_url",              "url": "https://petersfancybrownhats.com/view?item=103",              "webview_height_ratio": "tall",            },            "buttons":[              {                "type":"web_url",                "url":"https://petersfancybrownhats.com",                "title":"View Website"              },{                "type":"postback",                "title":"Start Chatting",                "payload":"DEVELOPER_DEFINED_PAYLOAD"              }                          ]                }        ]      }    }  }}' "https://graph.facebook.com/v2.6/me/messages?access_token=<PAGE_ACCESS_TOKEN>"這是我在 c# 中嘗試過(guò)的,但它不起作用。我不確定我是否以正確的方式轉(zhuǎn)換它。任何幫助將不勝感激,謝謝。   Activity previewReply = stepContext.Context.Activity.CreateReply();            previewReply.ChannelData = JObject.FromObject(            new            {                attachment = new                {                    type = "template",                    payload = new                    {                        template_type = "generic",                        elements = new                        {                            title = "title",                            subtitle = "subtitle",                            image_url = "https://thechangreport.com/img/lightning.png",                            buttons = new object[]                              
查看完整描述

1 回答

?
慕婉清6462132

TA貢獻(xiàn)1804條經(jīng)驗(yàn) 獲得超2個(gè)贊

和 elements屬性buttons需要是列表??纯聪旅娴氖纠0?。


var attachment = new

{

    type = "template",

    payload = new

    {

        template_type = "generic",

        elements = new []

        {

            new {

                title = "title",

                image_url = "https://thechangreport.com/img/lightning.png",

                subtitle = "subtitle",

                buttons = new object[]

                {

                    new {

                        type = "element_share",

                        share_contents = new {

                            attachment = new {

                                type = "template",

                                payload = new

                                {

                                    template_type = "generic",

                                    elements = new []

                                    {

                                        new {

                                            title = "title 2",

                                            image_url = "https://thechangreport.com/img/lightning.png",

                                            subtitle = "subtitle 2",

                                            buttons = new object[]

                                            {

                                                new {

                                                    type = "web_url",

                                                    url = "http://m.me/petershats?ref=invited_by_24601",

                                                    title = "Take Quiz"

                                                },

                                            },

                                        },

                                    },

                                },

                            }

                        },

                    },

                },

            },

        },

    },

};


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

share_contents請(qǐng)注意,如果您的主模板與您嘗試共享的模板不同,您只需向模板添加一個(gè)元素。否則,您的按鈕只能是new { type = "element_share" },這使得模板變得不那么復(fù)雜。


此外,請(qǐng)務(wù)必將您的所有 URL列入白名單,并確保所有圖像 URL 都能正常工作——其中有幾個(gè)不能正常工作。如果 URL 未列入白名單且圖像鏈接已損壞,則模板不會(huì)呈現(xiàn)。


查看完整回答
反對(duì) 回復(fù) 2022-10-23
  • 1 回答
  • 0 關(guān)注
  • 126 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)