LINE Messaging API icon

LINE Messaging API

Interact with the LINE Messaging API

Overview

This node interacts with the LINE Messaging API to perform various messaging and user profile operations. Specifically, the 'Get Group Chat Member Profile' operation retrieves the profile information of a specific member within a LINE group chat. This is useful for scenarios where you need to access details about a group member, such as their display name or profile picture, for personalized messaging or user management within a group chat context.

Use Case Examples

  1. Retrieve profile information of a group chat member to display their name and avatar in a custom dashboard.
  2. Use the member profile data to personalize messages sent to group members.
  3. Fetch group member profiles to audit or manage group participants.

Properties

Name Meaning
User ID The unique identifier of the user whose group chat member profile is to be retrieved.
Group ID The unique identifier of the group chat from which the member profile is to be fetched.

Output

JSON

  • displayName - The display name of the group chat member.
  • userId - The unique user ID of the group chat member.
  • pictureUrl - The URL of the group chat member's profile picture.

Dependencies

  • LINE Messaging API

Troubleshooting

  • Ensure that the 'channel_access_token' credential is correctly set and valid; otherwise, the node will throw a 'Missing channel access token' error.
  • Verify that both 'User ID' and 'Group ID' inputs are provided and correctly formatted; missing or invalid IDs will cause the API call to fail.
  • If the node throws errors related to JSON parsing, check that input parameters are correctly formatted and not empty.

Links

Discussion