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 am developing an android application where I need a list of recharge plans that the major operators offer. eg. paytm is an app that displays a list of plans.
Should I manually check for the plans and update them regularly or is there any API provided by these operators or is there any open source API that does it?
What country are you in? I am sure there are some APIs from third parties that allow you to get the specs of various plans.
Another way to do it would be to scrape the websites of the operators, or just maintain a list manually.
Please check Dataweave web site, they will provide recharge plan :
http://blog.dataweave.in/post/64192707157/dataweaves-telecom-recharge-plans-api
or as per #HansiHE suggest scrape the websites of the operators.
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 3 days ago.
Improve this question
Hi i'm trying to work on a project for an exam. I would like to make an android app where a user can scan a handwritten email address (it's a computer vision exam) and the app informs if any account associated with that email has been hacked. I thought I'd use the APIs made available by the site haveibeenpawned.com but I've just discovered that to include the service in an external project you have to pay a monthly subscription and request an API key. Do you know of another public database of this type that is free to use?
I have no idea how to do it any other way
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 website to get online users now in my app or any good idea?
I tried to using onStart and onDestory but do not work well Are there other ideas
Best way is to use Socket for more accurate data
This way your server-side and mobile app can maintain real-time comms, which can be used in more than just tracking who is online you can even track in which activity they users are.
if you want something with less code you can use fabric KPI which can track alot more things like content view - Search - share -Rated content - etc.
NOTE
google bought fabric and right now they are working on migrating all of fabric features to their firebase service.
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
How do i know if an api is free for use or has a price?.
I like to use some companies waze,whatsapp,facebook,gmail with my app but was unable to find any information about pricing.
Does opening an app using iframe cost too?.
The best way is to type name_of_software + api in google. For example: Waze Api led me here and Facebook API led me here.
For Waze, you can look into becoming a broadcaster, which will give you access to their resources.
Try around, experiment and see what's out there and if they offer price information or not.
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 was wondering if there are any tools to create mobile apps that's off WordPress /shopify so that customers can use the app to purchase goods. Does WordPress or shopify provide this service? I know that WordPress has an app. But uses need to navigate to the blog. What I need is a standalone mobile application. Thanks. If there isn't, are there any alternatives?
If I understand correctly, you want to create a standalone native app that lets your customers shop.
Check out Apptuse.com, they support Shopify +5 other platforms and seem to do exactly what you are looking for.
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 am trying to develop a mobile tool to check-in via face. This application is intended for employee place and time log-in. The app will simply take a picture or scan a face, look for a match in the database, and log-in the employee, then another employee will simply show his face to the camera to log-in for his/her shift.
I am looking for available face identification products, suitable libraries or any other suggestion. Thanks!
Lambda Labs Face API is what you need
http://api.lambdal.com/?ref=homepage
It's still in beta though. It's free for first 4000 detection and 1000 recognition per month :)
On Android you could use the FaceDetector class already available in the OS.
You can find an example here.