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
Related
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.
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 want to do a feedback form in RN android and for that I need 'email' code. How to proceed with this? Do you have any samples? I already tried react-native-mail but it is just invoking 'Send mail' intent.
You would likely need to look at a email service with a API like Mandrill. You could setup a template and pass it the data from the form and email it to whatever email address you would like. Mandrill wouldn't be a requirement as you could accomplish this with any transactional email service. I don't have any code samples to show as there are many possibilities depending on the service used but code samples from the service you go with would probably give a good ideas as to how to do it.
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
Backgrounds
I want to learn about instant messenger, both android app and server.
In my first thought, I want to use GCM to communicate. But I found the article below. By this article, GCM is not good for sending messages, and It seems that I need to build dedicated messenger server.
Instant Messaging on Android with Google Cloud Messaging
So I googled how to build instant messenger server. As a result, I found that XMPP is popular technology. But I couldn't found examples.
Finally I found source below. This example seems that includes both android and server side source, but I'm not sure this example using XMPP.
https://code.google.com/p/simple-android-instant-messaging-application/
Q1: Is there a good example source of XMPP Server?
Q2: Does anybody have experience about https://code.google.com/p/simple-android-instant-messaging-application/ ? Is this a example is good for beginner?
Any help will be appreciated.
You can try the below results.
https://cloud.google.com/appengine/docs/java/xmpp/
http://quickblox.com/developers/Android_XMPP_Chat_Sample
http://javapapers.com/android/android-chat-with-google-gcm-xmpp/
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).
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 creating an Android app which must do some web surfing in the background in order to provide a service to the user.
The site I must connect to has no API, it only provides standard HTTP access, with extensive cookie usage but (luckily for me) not much Javascript code.
I wonder if there is a library which behaves like python mechanize for Android, or if it's possible to use mechanize itself in the Android app.
I'm not 100% sure it'll work in Android, but being Java-based, HtmlUnit is probably worth a look.
Mechanize has been ported to Java, and does run in Android:
http://gistlabs.com/software/mechanize-for-java/