Viber messenger API [closed] - api

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm looking for a library to do requests to Viber messenger server.
I need to:
send messages to users;
check sent messages delivery status;
check that a user has Viber account.
I know that Viber has no open API for developers, but maybe someone has experience with reverse engeneering of Viber protocol or some else methods of communication with Viber.
Or if someone can do it, please, write me, I have a suggestion for you.

All I did was createing an applicaion for UIautomate of viber message sending using viber desktop application.
if you want to send bulk messages or messages to your contact do this way.

Related

How can i get hold on skyscanner API? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 1 year ago.
Improve this question
I'm building a platform and i would like to use Skyscanner API, however i've been sending emails for the last couple months requesting the API access and no answer until now. Anyone has a better way to communicate with Skyscanner API team? Thanks in advance.
Try RapidAPI's SkyScanner integration.
You can use the Skyscanner API on RapidAPI Hub. It has a lot of endpoints that you can test and connect to. RapidAPI support team is also very active so that you can pass your request to them. They have up-to-date API there, and everything is working as expected.

Access telegram views via bots [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
How we could access groups/channel views in telegram for bot is there any API or solution?
I searched so much in net but nothing found
Also is There Any way that bot could delete a post??
Telegram bot API doesn't have any permission to delete a message (only edit for update).
Also you can't access to post view by bot API. you can get only channel members count by bot API.
Telegram official API
Firstly take a look on link above.
For deleting post probably you should use messages.deleteMessages method
Recently in telegram api ver.3 delete message added

Any Snail Mail APIs Recommendations? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I'm building a web application and i want to send Snail Mail automatically by server side, Is there any good APIs for that? ( i don't mind about the cost )
P.S. I'll hate you if you say it's not programming related, and i bet many coders here would love to know.
Thanks!
Here's a list of mailing services I found with APIs, or something close to it
https://click2mail.com/ (REST and SOAP)
http://www.postalmethods.com/ (SOAP)
http://l-mail.com/ has an 'integration' account. It is not clear how automatable sending a letter is.
http://www.cfhdocmail.com/ (SOAP)
http://www.ezgram.com/ has an HTML based interface you might be able to reverse engineer
https://www.trypaper.com/ (REST)
https://www.lob.com/ (REST)
I just found Postal Methods API. I haven't really seen any others.

email to api service? does it exist? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Is there any service that receives emails users send to me, parse the content and call my API?
I would do it myself but don't want to mess with mailservers, cronjobs, etc
Thanks
I approached this problem a week or so ago whilst trying to provide one of our developers to not write something. There is nothing out of the box or hosted that I've found.
The nearest thing I've seen is a DIY SMTP framework in Python which is quite powerful (Lamson). It allows you to receive email, process it and call external services or store the message content.
http://lamsonproject.org/
Hope this helps.
Google App Engine has a mail API built in, that seems very simple to use, just forward the email to string#appid.appspotmail.com
I will use that, calling the API of my app hosted in heroku.
Thanks Chris for your answer, it is very good to know that a simple email framework exists!
SendGrid.com also offers this service. http://sendgrid.com/docs/API_Reference/Webhooks/parse.html

about sending SMS by writing program [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
Exccuse me,
may I ask is there any API for sending SMS mesaages to mobile phone through programming?
If there is any, may I ask if there is any recommended one which is morer reliable and have more reasonable prices?
Using SMPP is overkill unless you are planning to send smses at the speed of 50 a second or more.
For incidental sending of SMSes you can use HTTP calls to a SMS gateway. The Call will be similar to:
http://www.somesmsgateway.com/api.php?to=31612345678&msg=helloworld&username=yourusername&password=yourpassword
an example of such a gateway is clickatell
Take look at Smpp OpenSource
SUMMARY:
SMPP stands for Short Message Peer to
Peer. It is a communication protocol
designed for transfer of short
messages between short message centre
and SMS application.
Zeep Mobile or use an Aggregator
There are tons of SMS providers. You should take a look at PW,
Nexmo, Twilio, Hoiio, Zeepmobile, etc comes to mind.