File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 12
12
public class ExampleConversationSendMessage {
13
13
14
14
public static void main (String [] args ) {
15
- if (args .length < 4 ) {
15
+ if (args .length < 3 ) {
16
16
System .out .println ("Please at least specify your access key, the channel id and destination address.\n " +
17
17
"Usage : java -jar <this jar file> test_accesskey(Required) channel_id(Required) to(Required) fallback_channel_id(optional)" );
18
18
return ;
@@ -42,7 +42,7 @@ public static void main(String[] args) {
42
42
43
43
try {
44
44
ConversationSendResponse sendResponse = messageBirdClient .sendMessage (request );
45
- System .out .println (sendResponse .toString ());//Prints messageID
45
+ System .out .println (sendResponse .toString ());
46
46
47
47
} catch (GeneralException | UnauthorizedException exception ) {
48
48
exception .printStackTrace ();
You can’t perform that action at this time.
0 commit comments