我正在發送帶有 openURL 的 cardAction,用戶應該單擊該按鈕,按照所述 URL 中的說明進行操作,然后報告數據。我希望在用戶單擊按鈕時(也就是打開 URL 時)顯示一條消息。根據我的測試,我只能選擇 ImBack 或 OpenUrl。有沒有辦法在一個 CardAction 中同時完成這兩項操作?var card = new SigninCard(){ Buttons = new List<CardAction>() { new CardAction() { Title = "Open a URL", Type = ActionTypes.OpenUrl, Value = this.myURL, DisplayText = "I want to show text when I open myURL but this text doesn't show", }, new CardAction() { Title = "Message Back", Type = ActionTypes.ImBack, Value = "MessageBackButtonClicked", }, },};
- 1 回答
- 0 關注
- 140 瀏覽
添加回答
舉報
0/150
提交
取消