Zalo Sticker icon

Zalo Sticker

Quản lý sticker Zalo - Tìm kiếm, lấy danh sách và thông tin chi tiết sticker

Overview

This node operation allows users to retrieve a list of Zalo Stickers based on a given name or keyword. It is useful for scenarios where you want to search and fetch stickers from the Zalo platform, either filtering by a specific sticker name or retrieving all available stickers if no name is provided.

Practical examples include:

  • Fetching stickers related to a particular theme or keyword to display in a chat application.
  • Retrieving all stickers to populate a sticker picker UI.
  • Automating sticker management or analytics by collecting sticker data programmatically.

Properties

Name Meaning
Tên Sticker The name or keyword to filter stickers by. Leave empty to retrieve all stickers.

Output

The output JSON contains the following structure:

  • success: Boolean indicating whether the sticker list retrieval was successful.
  • message: A descriptive message about the operation result.
  • data: An array containing the sticker objects matching the query.
  • count: Number of stickers returned (if the data is an array).

Example output JSON snippet:

{
  "success": true,
  "message": "Lấy danh sách sticker thành công",
  "data": [ /* array of sticker objects */ ],
  "count": 10
}

No binary data output is produced by this operation.

Dependencies

  • Requires an API key credential for authenticating with the Zalo API.
  • Uses a Zalo API client library internally to perform login and sticker fetching.
  • Node configuration must include valid credentials for accessing the Zalo API.

Troubleshooting

  • Common issues:

    • Invalid or missing API credentials will cause authentication failures.
    • Network connectivity problems can prevent communication with the Zalo API.
    • Providing an invalid or malformed sticker name parameter may return empty results.
  • Error messages:

    • "Không thể đăng nhập" ("Cannot login"): Indicates failure to authenticate with the Zalo API. Check API credentials and network access.
    • Errors thrown during API calls will be surfaced; enabling "Continue On Fail" allows processing multiple items even if some fail.

Links and References

Discussion