0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

KonyでSMSを送信する方法

Last updated at Posted at 2021-02-26

目次

  1. はじめに
  2. 実装方法
  3. まとめ

1. はじめに

本記事では、アプリで電話番号とテキストメッセージを指定して、
メッセージアプリを開き、SMSを送信する方法について説明します。
それでは実装方法を紹介していきます。

2. 実装方法

2-1. Widgetの追加

ベースとなる画面を作成します。
今回はこのように作成いたしました。

image001.png

2-2. メソッドの作成

続いて、SMSを送るためのメソッドを作成します。

  • frmDemoController に、sendSMSメソッドを追加します。
frmDemoController.js
define({
  sendSMS: function() {
    var phoneNo = this.view.txtPhoneNum.text;
    var text = this.view.txtContent.text;
    kony.phone.sendSMS(phoneNo, text);
  }
});

作成したメソッドについて解説をしていきます。

まず、phoneNotext には、それぞれテキストボックス・テキストエリアから取得したテキストを設定します。

kony.phone.sendSMS(phonenumber, text)
このAPIを使うと、指定した電話番号宛に、指定したテキストが入力された状態で
SMSのメッセージアプリを開くことができます:clap_tone1:

パラメータ 説明
phonenumber [String] SMSを送信したい電話番号
text [String] SMSの内容

今回は、取得したphoneNoとtextをそれぞれにセットします。

2-3. btnSendボタンに作成したメソッドを指定

btnSendを選択して、画面右のプロパティからActionを選択。
onClick 横の Edit > Invoke Function を選択して sendSMS を設定します。

image002.png

ここまで実装は完了です。
AndroidとiOSでどのようになったか見てみましょう!

結果

  •   Android
    
  •   iOS
    

3. まとめ

この記事では、Konyを使って指定した電話番号にテキストメッセージを送信する方法を説明しました。
Konyを使えば、このように簡単な方法でSMS送信を実装できます。ぜひ試してみてください!

参考

Kony Doc

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?