Did you read error response?
- 0
No I am using POSTMAN to post request
- 0
using curl right ? seem like mistyping replace a - with :
curl -v -X POST https://api.line.me/v2/bot/message/push \
-H 'Content-Type**:** application/json' \
-H 'Authorization****:**** Bearer {channel access token}' \
-H 'X-Line-Retry-Key: {UUID}' \
-d '{
"to": "U4af4980629...",
"messages":[
{
"type":"text",
"text":"Hello, world1"
},
{
"type":"text",
"text":"Hello, world2"
}
]
}'
- 0