0

我試圖在fb messenger中添加超鏈接。基本上我創建一個聊天機器人來回答用戶的問題。但是,當我想要將用戶鏈接到網頁時,唯一可能的方法是輸入整個網址,這個網址真的很冗長和難看。如何在fb messenger中添加超鏈接

Fb的信使不支持HTML標籤,所以我不能用錨標記來創建我的網址隱藏一個字背後的鏈接的超鏈接..

有沒有一種方法我可以輸入一個句子,超鏈接fb messenger中的單詞後面的URL?

長今一直在尋找tooo ..

+1

我不認爲這是可能來創建超鏈接是一個信使文本。你可以嘗試使用URL縮短器,如果你的URL太長,這也許是最好的選擇。 – Bangdel

回答

0

您可以使用一個通用的模板用的web_url沒有圖像:

{ 
    "recipient":{ 
    "id":"333333333" 
    }, 
    "message":{ 
    "attachment":{ 
     "type":"template", 
     "payload":{ 
     "template_type":"generic", 
     "elements":[ 
      { 
      "title":"Here is the link you asked for", 
      "default_action": { 
       "type": "web_url", 
       "url": "https://www.facebook.com", 
       "messenger_extensions": true, 
       "fallback_url": "https://www.facebook.com/" 
      }, 
      "buttons":[ 
       { 
       "type":"web_url", 
       "title": "open link", 
       "url":"https://www.facebook.com" 
       }    
      ]  
      } 
     ] 
     } 
    } 
    } 
} 
相關問題