Getting started with the Telegram API: Any useful resource? [closed] - android

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 5 years ago.
Improve this question
there are already some threads on the class Telegram API, but none was really helpful.
I'm currently trying to implement it in an Android app in order to send messages through Telegram. The documentation they provide is close to incomprehensible, so do you know any good resource or guide on the API?
It seems to be necessary to instanciate TelegramApi. But this class isn't even included in the telegram .jar archive.
Does anyone have a tip on how to get started with the implementation?
Thanks.

To get stared you need to first implement Telegram AuthKey.
The documentation you need is here:
https://core.telegram.org/mtproto/auth_key
and here
https://core.telegram.org/mtproto/samples-auth_key
What this gives you is a starting point into understanding the documentation writing style for Telegram API, as well as a grasp of the basic patterns for interacting with Telegram-API
I had put together a detailed write up on the process i took here: https://stackoverflow.com/a/32809138/44080
What you should aim at is first Successfully getting your Telegram AuthKey, understanding the data you are sending and the structure of what you are receiving back.
The procedures and patterns you build along the way will be usable for further exploration of the Telegram API

Related

Binding Qt with MAPI [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
I'm making an Android app using Qt(So, that includes QML & C++, I guess I must say), that's supposed to both send and get email from different email services(Mostly, It will be corporative email, so i think it must go through Microsoft Exchange server, and also Microsoft Outlook preferable).
The thing is that i didn't found any specific material nor documentation on those topics. I found good SMTP client for Qt, but that does not fully serves my needs, due to the fact that It is also needed to get those emails. I was wondering how it is even possible to do?
Does it will take some Java native code to get those, or is there any opportunity to somehow bind those with Microsoft Graph/Microsoft Outlook API? Really struggling out here.
What you're looking for is an SMTP Client.
There are various clients already written in C++. You'll need to find one that works on Android. Here's one I found on google: https://github.com/cutelyst/simple-mail

How to implement chatbot in my mobile application [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 6 years ago.
Improve this question
I am trying to find any open source platform using which i can implement chat-bots in my application. I have done RND on this but no luck. If some one already done something like this and implemented chat-bot in his/her application. Then please help me out here. Please send me some links using which i can implement chat-bot in my application. Thanks in advance
Basically, Chat-bots has two parts. 1) natural language processing and ii) chat backend system(like push notifications, chat status, online/offline presence, typing indicator, forwarding etc).
For first part, you can use any of NLP APIS like one from google,Microsoft etc. It totally depends on your usage case and business which apis suits you best.
For second part, you can use any of the chat backend service like Applozic or build your own. For Client side implementation, you can explore our open source client repositories here.
PS: I am co-founder at applozic.
You can use Botlibre. They provide android api with documentation for implementing a chatbot. However first you have to create a chatbot there and use credential to connect from android.

Looking for Handwriting OCR Android libraries [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 7 years ago.
Improve this question
I´m looking for some useful API or libraries for handwriting recognition in Android. I want to integrate it in my app but I don´t find anything. I saw in other post that it´s possible using Tesseract(but this work better for OCR image text recognition).
Also I found this API https://dev.myscript.com/ , but it doesn't work fine. Anyone of the demos that they provide work correctly in the phone. It crash when I write a lot or just tab the screen. I tried to follow their tutorials to integrate it in a single app with a single Widget and it doesn't work.
Someone knows some way to integrate handwriting recognition? It´s just for a simple view where I want to write something in the screen throught Handwriting and put the text in a EditText.
there are quite a few options out there.
The following Stack post answers your question.
You can also have a look at PhatWare and Lipi Toolkit

Proper android Oauth2 library / framework [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 6 years ago.
Improve this question
I've been searching day and night now for a proper OAuth2 library to use for my android app.
I came across many, including apache amber (formally leeloo) and the android developer specified one (http://developer.android.com/training/id-auth/authenticate.html) which seems to be deceperated.
Yet none of them work or even merge with my project error free (ie. missing methods in jars).
Thus my question is, if there is ANY proper OAuth2 library out there that can be used for android. All I need is a library that allows me to retrieve an authentication code, followed by the token call which will allow autorize requests.
Any links towards an interesting project (git or w/e) are most appreciated.
The most complete library I found is Scribe. I liked it so much that I wrapped it to make it more suitable to asynchronous android interaction. You can check my PostmanLib here. It is supposed to make easier the asynchronous interaction AND the authentication via a webview.
Based on the Oltu (formerly Amber) dev mailing list, it has also been used in Android (at least the client side part).

Android Twitter App Source Code [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 7 years ago.
Improve this question
I've been reading this post on the android developer blog about the twitter client and UI patterns.
It mentions the source code will become available, does anyone know if this has happened yet and where I can find it? I've drawn a blank.
Thanks!
I just asked the same question a few time ago:
Good UI practice in Android, are there some sample code?
So, the answer is that Twitter source code is not available yet.
You may have a look at Google IO application that use similar tools or you can use the nice GreenDroid (http://android.cyrilmottier.com/?p=240) library while waiting Google to release the code.
There was a post - on twitter, of course - a few days ago, saying that the source was coming very soon. I can't find the post now, and Twitter doesn't seem to want to show me search results from before 1st August, but it was definitely a days-not-weeks type of message.

Categories

Resources