Skip to content

Commit 55785a0

Browse files
authored
Update messages-quickstart-interactive-messages-java.md
Only allow up to 20 char, previously "Click here to find out" exceed and will throw error
1 parent d63e716 commit 55785a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/communication-services/quickstarts/advanced-messaging/whatsapp/includes/interactive/messages-quickstart-interactive-messages-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ The Messages SDK enables Contoso to send interactive WhatsApp messages, when ini
159159
In this example, the business sends a click to a link message to the user.
160160

161161
```java
162-
LinkContent urlAction = new LinkContent("Click here to find out", "https://wallpapercave.com/wp/wp2163723.jpg");
162+
LinkContent urlAction = new LinkContent("Find out more", "https://wallpapercave.com/wp/wp2163723.jpg");
163163
InteractiveMessage interactiveMessage = new InteractiveMessage(
164164
new TextMessageContent("The best Guardian of Galaxy"), new WhatsAppUrlActionBindings(urlAction));
165165
interactiveMessage.setFooter(new TextMessageContent("Intergalactic New Ltd"));

0 commit comments

Comments
 (0)