Lee
Lee

Reputation: 3012

Line Messenger API - Resolve sticker

I'm writing a small chat tool integrating with Line. One issue I'm facing is to display stickers sent by users from Line. In Line's webhook documentation about sticker, only a package Id and sticker Id are provided.

{
    "replyToken": "nHuyWiB7yP5Zw52FIkcQobQuGDXCTA",
    "type": "message",
    "timestamp": 1462629479859,
    "source": {
        "type": "user",
        "userId": "U206d25c2ea6bd87c17655609a1c37cb8"
    },
    "message": {
        "id": "325708",
        "type": "sticker",
        "packageId": "1",
        "stickerId": "1"
    }
}

I only found a sticker list pdf file in Line's official site to provide a very manual map between sticker ids and the actual sticker. Is there any online sticker store I can simply compose a web URL base on the package Id and sticker Id to reference to?

Upvotes: 4

Views: 2349

Answers (0)

Related Questions