Last active
May 7, 2017 00:34
-
-
Save georgeportillo/8318c0130b92f8538a795caae52b1113 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Simulate get started | |
{ | |
"entry": [{ | |
"id": "<PAGE_ID>", | |
"time": 1489304167705, | |
"messaging": [{ | |
"sender": { | |
"id": "<USER_ID>" | |
}, | |
"recipient": { | |
"id": "<PAGE_ID>" | |
}, | |
"timestamp": 1458692752478, | |
"postback": { | |
"payload": "{\"event\":\"getStarted\", \"type\":\"postback\"}", | |
"referral": { | |
"ref": "USER_DEFINED_REFERRAL_PARAM", | |
"source": "SHORTLINK", | |
"type": "OPEN_THREAD" | |
} | |
} | |
}] | |
}] | |
} | |
// Simulate quick reply | |
{ | |
"entry": [{ | |
"id": "<PAGE_ID>", | |
"time": 1489304167705, | |
"messaging": [{ | |
"sender": { | |
"id": "<USER_ID>" | |
}, | |
"recipient": { | |
"id": "<PAGE_ID>" | |
}, | |
"timestamp": 1458692752478, | |
"message": { | |
"quick_reply": { | |
"payload": "{\"intentId\":\"0a198bfb-65e6-43bf-b7ee-9d6e44e5f176\"}" | |
}, | |
"mid": "mid.$cAABa-kLiB2NiCrVr_Fb2XAjkJlLl", | |
"seq": 818830, | |
"text": "Yes" | |
} | |
}] | |
}] | |
} | |
// Simulate button tap | |
{ | |
"entry": [{ | |
"id": "<PAGE_ID>", | |
"time": 1489304167705, | |
"messaging": [{ | |
"sender": { | |
"id": "<USER_ID>" | |
}, | |
"recipient": { | |
"id": "<PAGE_ID>" | |
}, | |
"timestamp": 1458692752478, | |
"postback": { | |
"payload": "{\"intentId\":\"40f1cf14-fa01-4dbe-b1eb-bf47f37509c5\"}" | |
} | |
}] | |
}] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment