2017-05-28 91 views
0

我正在使用帶有Node API的botframework並想知道如何使用具有圖像縮略圖的HeroCard附件發送主動消息。發送帶圖像的主動消息

我的主要問題是我無法創建CardImage而沒有會話。

app.get("/api/send_notification", (req, res) => { 
    let address = req.body.adr; 
    let msg = new builder.Message().address(address).text("some text"); 

    let card = new builder.HeroCard() 
      .title("title") 
      .text("hero card text"); 

// .images([builder.CardImage.create(session, imgURL)]); 
// There is no session when sending a proactive message; 

    msg.addAttachment(card); 
    bot.send(msg); 
} 

有什麼建議嗎?

回答

0

結束了使用

let img = [{url: imgURL}]; 
let card = new builder.HeroCard() 
     .title("title") 
     .text("hero card text") 
     .images(img); 

img必須爲陣列