Active Notification of SMS to APP
JSON fields sent by the App:
Field Name | Type | Description |
---|---|---|
is_success | int | 0 for failed message sending, 1 for successful send |
msg_ID | int | ID for the reply: each message has a corresponding ID |
msg_type | int | Type of the message |
msg_notice | int | 0 for no corresponding SMS reply, corresponding to the reply list |
Example:
{
"is_success": 0,
"msg_ID": 1,
"msg_type": 1,
"msg_notice": 0
}
JSON fields received by the App:
Field Name | Type | Description |
---|---|---|
msg_type | int | Type of the reply message: Incoming call SMS (1), QQ, WeChat |
msg_ID | int | ID for the reply: each message has a corresponding ID |
msg_notice | int | 0 for no corresponding SMS reply, corresponding to the reply list |
Example:
{
"msg_ID": 1,
"msg_type": 1,
"msg_notice": 0
}