I am working on xamarin.forms android application. I am wondering to know is there any deployment area when we can provide a password for each installment of the application. So, that user can use the application after the successful entering of the password that will be set at the deployment time.
in brief: A application will be provided to the user for which the password will be set while deploying. So, after installing the application the user will be asked to enter the password when user enters the correct password i.e used at time of deploying then only he can able to access the application.
Please let me know is there anything that make my requirement to work.
Many thanks in advance.
No, there is not.
The best way to protect your app is to implement an authentication system inside your app
Related
I've built an app in App Maker and deployed it, but the user I thought I had given permission to is getting this notification "Sorry, you don't have access to this application."
In the app, I added a role to the data source and added the user to the role from the deployment. I also added the role to each page's security. I verified that App Maker is turned on for all of our users. I've ensured that the user has access to the Google Sheet data tables (both what I imported into the App for preview and the data I exported from the deployment). I've even added the user as a Cloud Sql Viewer in our Cloud SQL instance (don't know if that was necessary). This is my first app and I feel like I'm flying blind. I'm obviously missing something but can't figure out what. Any help is much appreciated!
Make sure all the required models can be accessed by the role you assigned to the user.
If the user has another Google account in the same Chrome session, the browser may be switching them to this external user when opening the app. Sign-out from that account or try incognito.
Make sure the deployment has no restriction as shown here; or if it does, allow the username.
What is the way to do the aboslute same app BUT with user authentication? https://learn.microsoft.com/en-us/aspnet/core/tutorials/first-mvc-app/?view=aspnetcore-2.1
If I just select the user authentication in the beginning, the migrations get messed up and MvcMovie link remains unresponsive.
Thanks!
Try to read this blog from Microsoft. This will help you start how to implement Identity and Authentication
i'm developing an app using phonegap.
i'm using inappbrowser plugin to display my asp.net pages where my users login and get connected to my server.
how can i let the users login just once then the next time they open the app they get automatically connected without the need to login again?
thanks
1) you can use localstorage to save credentials. But bad idea. Cause localstorage life cycle isn't good enough. Specially iPhone treats localstorage as temporary storage
2) You can use database like webSql to save the credentials in your app. Make a ASP service in your website to link up your app and website. Save the credentials at first time inside your app. In the second time check if credentials exists in your app database, if exists then log him in through that ASP service page without the knowledge of the app user.
There are the ways I could think of. I don't know if there any cache or session style exists in inAppBrowser. If exists may be others will help you with that.
I want to implement the LDAP in my MVC web Application.I dont have any knowledge about this.I just know for the time being that this is used for User Authentication using Windows domain Active Directory UserID and Password.
So please suggest me for this to implement this step by step.
If you build an Intranet site that will be hosted within your corporate network, you can use Integrated Windows Authentication which does not require to enter UserID and Password. Please see detailed tutorial regarding this topic.
If you need to use Forms Authentication (user should enter his name and password) then see this MSDN article.
I am building a simple intranet site and I want to get the user's Active Directory.
What steps do I need to take on the IIS side for this to work?
Are any changes required to my web config?
I would appreciate a detailed explanation, as this is giving me a hard time.
I have tryed things like this
Request.LogonUserIdentity.Name.ToString
also
HttpContext.Current.User.Identity.Name
the users will not login the page should be able to get the credentials without them typing their username and password
windows authentication in my web config throws an error and causes my page not to work
This might be a good starting point for you:
Recipe: Enabling Windows Authentication within an Intranet ASP.NET Web application
or this:
Active Directory Services: PrincipalContext — What is the DN of a “container” object
As #Joel Ehterton said, more details of exactly what you're trying to do would be helpful.