I need to create an android app where the user info like (name,phone_no,address,personal_note) should be stored in my sql database on submitting. I need a real time notification when the user submits the data. I did some search on how to implement this and found we can use app-php-sql method. Where I can load the php script on my server which deals with the data coming from app and stores it in my SQL database. Is this reliable when there are like 50-100 requests per day ? And how to implement a real time notification on receiving the data in my database?
or should i go with PARSE ? someone suggested me to use parse and that it can handle all these issues and notify me on there dashboard.
Related
Hi,
I am all new with Xposed and modules so I may have missed the appropriate module for my issue.
I would like to redirect all internet traffic from a specific app to another domain/IP.
To explain it more clearly, I want to redirect the Fitbit app traffic to my personal raspberry pi and build my own dashboard instead of sending data to Fitbit servers.
Otherwise, is there any cool module or app to track all requests from a specific app so I can redirect these by using hosts file.
For now I have simply removed the network permission to the Fitbit app by using the Xprivacy module which is working perfectly.
Thanks for your feedback.
You can use this app to view the ip addresses of the apps they connect to https://play.google.com/store/apps/details?id=com.antispycell.connmonitor
Thank you for pointing me this app. Anyway it is "only" giving the IP reached by the application, I am looking for analyze packets which are being send. I have been able to unpack the Fitbit apk, update the various URLs with a local IP address and repack/sign the apk. It is working on my phone as I can see request being sent to my Raspberry Pi but I am now trying to simulate the Fitbit server and to answer expected values to the app.
I did some progress yesterday as the app is first contacting the oauth/token-request url and I have been able to simulate the authentication process. Anyway, at the end, the apk try to contact the oauth/authorized url and here I don't know what to return so the application still fail to login.
So I am looking for an application to analyze packets being sent and received by an application so simulating the Fitbit server would be much easier.
Can i use dropbox as database ? Mean i use to store client data and retrieve client data from dropbox ? Does this work ? Anyone can share link or video teach ? I am new in android ap
I would highly recommend NOT using Dropbox as a database. If you only store data for a single user, it may be OK. However, if the user accesses things concurrently on multiple devices, Dropbox will not give you the guarantees in terms of data integrity you want.
If you need an easy to setup thing, look into Firebase.
So I have this app idea (don't we all), I have been programming apps for around two years so im not a beginner, but this is my biggest project to date. I want app to allow users to login using Facebook, it allows them to post a few words to this wall in the app. It allows your Facebook freinds to view these words and they can heart it within the app. This then sends you a notification etc. I know I will need to store data to a external database. What do I store it under, their facebook profile name which I can get from when they login? Would this allow me to then get me all their freinds on Facebook and search through the database for data containing their freinds names to get their likes?
I just need a way to allow users to post, interact and share with all their other freinds of Facebook. Whilst storing data so if they logout and login on someone elses phone they load everything up that was on their phone.
Many Thanks
You will need to use something called Parse, here's a guide to setting it up with a service called Heroku, since Parse has shut down: robpercival.co.uk/parse-setup-on-heroku. Thanks
Sent from my Nexus 9 using XDA-Developers mobile app
I am a student and I have a project to create a app for reservation . My question is how to show the data according to my database.
Like a student login his account and how to show his profile information according to the database.
Is there any coding to add it to scrape the data from the database and show it on my application?
And I use the SQLiteDatabase for my database.
please some body help me... Thank you
Divide your work into steps, that is:
1. If you are keeping a database in a website then there should be a piece of code on the website which takes requests in form of username and password, and returns the data.
2. If you can't do this but the data is on the internet then the unsafe way would be to download the whole database and then authenticate and search using client side code (security experts will want to murder you, though).
3. If you are going to populate the data from scratch only using your application, then Firebase by Google is a good and free solution for student level apps. Here you can have the data on Google's servers and request the data using user-password authentication. This is very safe method.
If you decide to use Sql, the typical unsafe query would be similar to querying using WHERE command wherein the parameters are username and password. But that should only be done on your website, and not on the client.
Hi guys,
I'm a bit new to the world of Tasker, I did search the forums for two factor auth automation and found one very good post but it deals with using an inbound SMS message for the variable.
I will post my logic structure and would appreciate any feedback or advice.
Input Variables
Four Authy 2FA fields, must be done each time the task is processed due to nature of 2FA
- Find ID of each field and store variable each time the applet is used. Would have a separate applet for each login.
Actions:
Open App that requires authentication
Input stored password ( is there anyway to store this password encrypted ? )
Find ID of 2FA text box and map for input
Input stored variable(above)
Click action to authenticate
My structure is not totally correct I'm sure. I'm new to the platform but I figure if my logic is correct, it's just a matter of format in tasker.
Appreciate your time and responses in advance !
So basically, you want to grab the 2FA code from the Authy app and input it into the app which needs authentication. Did I get your goal correct?