Bitcoin Forum

Bitcoin => Project Development => Topic started by: Dite1989 on July 23, 2017, 05:49:30 PM



Title: Auto-respond BCT, TG and FB messages
Post by: Dite1989 on July 23, 2017, 05:49:30 PM
A lot of clients write to me related my BTC projects via Facebook, Telegram and Bitcointalk.

It happened to me once that a client felt offended because I have not replied to him. He thought that I ignored him on intention and got mad. In fact, I did not reply because I was too occupied. Later, explaining it to him eased his pain.

Better would be preventing similar issues so do you have any method or program that can auto-respond messages at the mentioned three sites?


Title: Re: Auto-respond BCT, TG and FB messages
Post by: Bagrras on July 23, 2017, 08:10:03 PM
Doesn't FB ban for that?


Title: Re: Auto-respond BCT, TG and FB messages
Post by: Dite1989 on July 24, 2017, 08:16:32 PM
Doesn't FB ban for that?

Do they? They could detect if you send alot from the same message, but it should take just a little bit smarter system to make a difference between spamming and legit auto-responding.

Then I need this kind of service for Bitcointalk and Telegram too.


Title: Re: Auto-respond BCT, TG and FB messages
Post by: mprep on July 25, 2017, 02:33:02 AM
For Bitcointalk, there's no official API (yet; one of the requirements for the new forum software is modular API access so here's hoping), though I've coded enough bots for interacting with this forum to know that it's possible. You could either run it while you're browsing (userscript (adds a tiny bit of overhead on each affected page load, inherently buggier than any other implementation) or browser plugin), have your computer turned on (desktop program; safest though limited to when the computer's turned on (obviously)) or constantly (running on a server; highest uptime though you'd have to either keep the session cookies or your login details on the server + you'd appear as if you're always online).

For Telegram, there seems to be a developer API (https://core.telegram.org/#bot-api) (and I've been seeing quite a few altcoin-related Telegram bots pop up within my section) so it probably wouldn't be too much of a hassle implementing an auto-responder.

For Facebook, there also seems to be an API (https://developers.facebook.com/products/messenger/), though as a user previously mentioned, I'm not sure on what their policy on auto-responders is.


Title: Re: Auto-respond BCT, TG and FB messages
Post by: btc_enigma on July 25, 2017, 03:27:37 AM
A lot of clients write to me related my BTC projects via Facebook, Telegram and Bitcointalk.

It happened to me once that a client felt offended because I have not replied to him. He thought that I ignored him on intention and got mad. In fact, I did not reply because I was too occupied. Later, explaining it to him eased his pain.

Better would be preventing similar issues so do you have any method or program that can auto-respond messages at the mentioned three sites?

Good idea. Need one for BCT too. I wouldn't conduct business via FB (too much personal info involved) ! Maybe for linkedin


Title: Re: Auto-respond BCT, TG and FB messages
Post by: Dite1989 on August 13, 2017, 08:41:27 AM
For Bitcointalk, there's no official API (yet; one of the requirements for the new forum software is modular API access so here's hoping), though I've coded enough bots for interacting with this forum to know that it's possible. You could either run it while you're browsing (userscript (adds a tiny bit of overhead on each affected page load, inherently buggier than any other implementation) or browser plugin), have your computer turned on (desktop program; safest though limited to when the computer's turned on (obviously)) or constantly (running on a server; highest uptime though you'd have to either keep the session cookies or your login details on the server + you'd appear as if you're always online).

For Telegram, there seems to be a developer API (https://core.telegram.org/#bot-api) (and I've been seeing quite a few altcoin-related Telegram bots pop up within my section) so it probably wouldn't be too much of a hassle implementing an auto-responder.

For Facebook, there also seems to be an API (https://developers.facebook.com/products/messenger/), though as a user previously mentioned, I'm not sure on what their policy on auto-responders is.

Thank you, mprep! I read your answer not too long after you posted it, I just did not wish to log in from my workplace (strict IT security policy) and when returning to college I simply always was tired. I feel good to have a perspective as for implementing such auto-responders with the mentioned services. It surely needs more research on my part, though.

But this thread served its purpose. Thank you all for the contribution!