Create application login without database ! - Android Studio

Can I create an application login for any website where I am an user ,or I need to have access to that website database ?
I have made menu login and I dont know how to make connection with a website where I am a user.
Thanks in advance for your help

flashxml said:
Can I create an application login for any website where I am an user ,or I need to have access to that website database ?
I have made menu login and I dont know how to make connection with a website where I am a user.
Thanks in advance for your help
Click to expand...
Click to collapse
You can use firebase database. It is free until you reach a quota.

flashxml said:
Can I create an application login for any website where I am an user ,or I need to have access to that website database ?
I have made menu login and I dont know how to make connection with a website where I am a user.
Thanks in advance for your help
Click to expand...
Click to collapse
In general, some websites will expose methods, such as web services, for users to login while more another ones will not for security reason. But both of them will not enable their users to access their database directly.

Related

Notes synched through FTP

Hi there,
I don't know whether this is the right place for my inquiry:
I'm searching an notes APP that can be used as shopping list and which can be synchronized to several devices (Androids). YES there are plenty of those available in the market. But mostly they use their own server and I have to register. In many cases you have to provide your google account - then I'm not able to synchronize to my wive's mobile (with her own account). Maybe there are possibilities with google drive or dropbox etc. but instead of working with high fancy tools, why not simply having a notepad that synchronizes through a FTP - this is what I have anyhow and I can give access to whom I want.
Does anyone of you out there has an idea how to get it done?
Many thanks !!
Wolf
there`s No idea?
Still nothing ?

[Q] WP8 Skype for Lumia 525

I upgraded the Skype version 2.16.0.266 in Lumia 525 in which they have removed the option to login directly using Skype credentials. They are now forcing users to link Skype account with MS account which sucks. Can someone please provide an older version xap of Skype for WP8, in which we could login directly using Skype credentials without having to link the account with an Microsoft account?
prescript said:
I upgraded the Skype version 2.16.0.266 in Lumia 525 in which they have removed the option to login directly using Skype credentials. They are now forcing users to link Skype account with MS account which sucks. Can someone please provide an older version xap of Skype for WP8, in which we could login directly using Skype credentials without having to link the account with an Microsoft account?
Click to expand...
Click to collapse
Hey,
just need to log in at here and your account will be changed to your Microsoft account, then you can log in into app.
But WHY!
myst02 said:
Hey,
just need to log in at here and your account will be changed to your Microsoft account, then you can log in into app.
Click to expand...
Click to collapse
I don't want to do that. I want to use the older version of Skype in which linking was not necessary. If only someone who has not upgraded their Skype can extract and make the xap file available :fingers-crossed:
Sorry for asking, but what exactly is the reason behind still needing the Skype login and refusing to link it to your MS account? You need the MS account to use most the phone anyway...
The problem is choice
DaviUnic said:
Sorry for asking, but what exactly is the reason behind still needing the Skype login and refusing to link it to your MS account? You need the MS account to use most the phone anyway...
Click to expand...
Click to collapse
Skype PC app permits it, Skype android app permits it. Even the phones that declined to upgrade the WP8 Skype app are permitted to use Skype without linking. So why should I be forced to link?
Try a search online for "Skype XAP windows phone".
Reliability
pLUSpISTOL said:
Try a search online for "Skype XAP windows phone".
Click to expand...
Click to collapse
I would prefer to use a link tried by experts here, lest I might get some malware ridden file.

Dropbox as database?

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.

App planning guidance

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

App for Database question

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.

Categories

Resources