1
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.

[PHP] Messaging APIを用いたLINE Botでユーザー情報を取得するには

Last updated at Posted at 2020-12-09

#今回の題
ラインボットを友達に追加したユーザーは、そのLINE Botにユーザー情報を提供しています。
今回はそこからユーザーのプロフィール情報、つまり、

  • ユーザーID
  • ユーザー名
  • サムネイル画像
  • ステータスメッセージ
  • 言語

を取得します。

#前提

#コード
早速タイトルの答えとなるコードです。

 $user_id = $event->getUserId();
 $response = $lineBot->getProfile($user_id);
 $profile = $response->getJSONDecodedBody();

これだけです。

$profileの中に以下のような配列の形でユーザー情報が入っています。

[
    'userId' => 'XXXXXXXXX',
    'displayName' => 'XXXXXXXXX',
    'pictureUrl' => 'XXXXXXXXX',
    'statusMessage' => 'XXXXXXXXX',
    'language' => 'ja',
]

今回は以上です。

#参考
LINE Messaging API SDK for PHP
LINE Developers プロフィール情報を取得する

1
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
1
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?