Questions tagged [line-messenger]

Line is a freeware app for instant communications on electronic devices such as smartphones, tablet computers, and personal computers. Use the tag for questions about how to use the Line SDK for IOS, Line SDK for Android, Messaging API or Social API, don't use the tag for questions about how to use the app itself.

5 questions
2
votes
0 answers

Connect to offline directline routing to local echo bot based on Microsoft Bot Framework

I want to create a Line messaging bot using API wrapper provided by pierre3 hosted on local environment. Line Messaging Service ~~POST~~> WebApi.Net ~X-> Offline-Directline ---> Echobot (Bot Framework) I am using the node package…
1
vote
0 answers

Line payment API spring boot integration

I am working on setting up a line-payment for a existing spring boot application. As per the documentation [both v2 and v3 APIs], application should first request/reserve a payment with Reserve Payment API, which will provide transactionid, weburl…
Jai
  • 369
  • 3
  • 16
0
votes
0 answers

The webhook returned an HTTP status code other than 200.(401 Unauthorized)

I tried to make line chatbot that can setting up an event and notify the user at the setting date with the code down below: function doPost(e) { const data = JSON.parse(e.postData.contents).events[0]; const lineUserId = data.source.userId; …
0
votes
1 answer

How to solve Line message api always return bad request

I try to create app to send message to line user by using Line Message API but always return bad request. this curl i use to run on postman curl -X POST \ -H 'Content-Type:application/json' \ -H 'Authorization: Bearer ' \ -d…
user3001046
  • 235
  • 1
  • 10
  • 28
-1
votes
1 answer

Access to this API denied due to authorization error

I wanted to make my own LINE Bot using LINE Messaging API. I have cloned the sample echo bot using Flask in Python and succesfuly deployed the bot on Heroku. The Heroku Procfile contents are as follows web: gunicorn app:app I have entered the…
And rew
  • 1
  • 1