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
I have just installed opencart and now I want to create restful custom API for my opencart store to get used by y android developer.
Version OPENCART 3.0.2
But I am new to API and I do not know what to where to do and what needs to be shared with my android developer, can some one please help me with the perfect tutorial where I can learn and implement this thing.
I am trying to search the details on google.
I have found this link
https://code.tutsplus.com/tutorials/explore-rest-apis-in-opencart-20-part-one--cms-25122
But it is not written any where that what I will give to my android developer so that he can use my API I have not started yet. My store is fresh please help me with end to end steps if someone knows.
Thanks
Opencart provides a simple REST API although it's probably not advance enough to match your app requirements but you can get an idea about how to write your API.
Opencart's API can be found here:
Catalog/controller/api
For using the API you have to login first.
In order to login simply send a post request to
Yoursite.yourdomain/index.php?route=api/login
Please note that you need to send a username and a key in your post request.
You can set the username and key in admin/system/users/api
enter image description here
Please check the image and let me know what needs to be done.
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 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
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 building an iOS app for my boss, and I have to implement a chat. the app will run on iOS for now but in the future it's gonna run on android too, so I need a cross-platform working solution. I will develop it in Swift, on Iphone only.
once you logged in by Facebook , Twitter or email you'll be able to send messages to other users logged in the app and online. you know, waze style.
I think I cannot use iMessage since the app could be developed for Android too.
I'm trying to understand Jabber but I am totally new at it, but is it possible to make such a service in PHP?
Boss told me to look for a third party chat service, pay it and stop but I cannot find the right one.
could someone help me?
There is a really good new tool named Layer which does exactly what you are looking for.
Layer
There are many chat services availabale for both android and ios
1:Scringo
2:Firebase
3:Quickblox
i have tried with quickblox and it is really fine, easy to implement and use http://quickblox.com/
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
Are Android applications like Google Calender, Google Docs, Google Goggles, Android Market open source? I want to implement a similar UI and back end for my application. Can somebody tell me how to get the open source projects code from GOOGLE. Please let me know any kind of details related to this. Thank you for your help.
Check out https://github.com/android/
Calendar code
[EDIT]: Updated links
It might be worth checking out the K-9 mail client for Android.
It has a pretty decent UI IMO.
K-9 Mail Project on Google Code
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 have read Oauth2 Docs but still am yet to get a start to finish working example.
I am a beginner and struggling to get a solution working.
I am just about to the point where I am willing to pay someone to code this for me. But it seems like it should be fairly simple and that there has to be a start to finish working example out there.
So, do you have an example of an Android app that uses OAuth 2.0 to enable the sending of email via gmail? I also need an example of using the users contacts to prepopulate a list for the user to choose from as the recipient of the email.
If I could find a free, complete example I would be indebted forever.
NOTE: I posted a similar question here... looking for Android Gmail SMTP Oauth example
And the answer was good but being a beginner I was never able to get it to work.
thanks for any help.
I didn't have time to implement Google OAuth2,
but I can suggest you to make use of this open source library.
generic oauth2 login for android
covers OAuth2 implementation for Facebook, Foursquare, Gowalla. I would assume that should be easy to extend for Google, as OAuth2 is pretty much standard and communities differs mostly on loading user profile part.
I've done some of this work on the web side of things. Google says the oauth authentication for Android is similar in it's process. I found this link with a sample showing using OAuth with SMTP. It's available in a few languages, including Java.
I also have a C# sample of how to perform the Oauth in C#.