login credentials does not get validated when i used RSA and AES cryptography instead of the Django's default authentication. sign up works absolutely fine

2024-09-10 Thread Mahami Iddirisu
uses RSA for user authentication and AES for data encryption. Features: (i) User Registration: The system will allow users to register using their email address and password. (ii) RSA Authentication: During user registration, the system will generate an RSA public/private key pair for each user

Re: Unable to send activation email. user authentication

2024-09-07 Thread Asoma Samuel
Thank you Ryan. I will provide feedback on this solution On Saturday, September 7, 2024 at 5:45:59 PM UTC+4 Ryan Nowakowski wrote: > > > On September 5, 2024 9:06:38 PM CDT, Asoma Samuel > wrote: > > >I’ve overridden socket.getfqdn to return a specific local hostname in my > >Django settings,

Unable to send activation email. user authentication

2024-09-06 Thread Asoma Samuel
development server, and I’m also unable to send emails from within the Django shell. Additionally, we are experiencing issues with email delivery related to user authentication with Djoser and JWT. Problem Description I’ve overridden socket.getfqdn to return a specific local hostname in my Django

Re: Reactive frontend + Session Authentication (+ csrf ?)

2024-07-10 Thread Swarup Selvaraj
. host front end in a domain and backend in another domain In case of option 1 (front end and backend hosted under the same domain) you can manage to use session authentication. You could design the login form in Django and redirect to the frontend url upon successful login. You need not have to worry

Re: Reactive frontend + Session Authentication (+ csrf ?)

2024-07-08 Thread Joseph Aidoo
tant at all) solution, the Login form is created by Svelte. Them >> submission: not the real submission, but under the Submit button Svelte >> sends credentials to Django using FetchAPI. Maybe this submission is the >> 1st communication to Django server and so we haven't the

Re: Reactive frontend + Session Authentication (+ csrf ?)

2024-07-08 Thread Joseph Aidoo
to Django using FetchAPI. Maybe this submission is the > 1st communication to Django server and so we haven't the csrf token yet (?!) > > So I have realized the Session Authentication without any regard to > csrftoken cookie. My login view is wrapped by csrf_exempt. Svelte form >

Re: Reactive frontend + Session Authentication (+ csrf ?)

2024-05-20 Thread Natraj Kavander
submission is the > 1st communication to Django server and so we haven't the csrf token yet (?!) > > So I have realized the Session Authentication without any regard to > csrftoken cookie. My login view is wrapped by csrf_exempt. Svelte form > sends credentials, Django makes login()

Reactive frontend + Session Authentication (+ csrf ?)

2024-05-20 Thread zvo...@seznam.cz
have realized the Session Authentication without any regard to csrftoken cookie. My login view is wrapped by csrf_exempt. Svelte form sends credentials, Django makes login() and sends sessionid cookie back. It works. Now my question is: Is this solution safe enough? Or is it danger and I should firs

Re: JWT Authentication with Djoser

2024-02-16 Thread Eleuthere Aluma
Essaye .. Le jeu. 15 févr. 2024 à 18:37, MISHEL HANNA a écrit : > hello > i want to make api for register but i want modify the way of email > activation > in djoser to activate email it done by uuid/token but i do not want it to > be done like that > i want to activate the email by verification

Re: JWT Authentication with Djoser

2024-02-16 Thread Benjamini Athanas
try this # Custom Djoser serializer from djoser.serializers import UserCreateSerializer class CustomUserCreateSerializer(UserCreateSerializer): def perform_create(self, serializer): user = serializer.save() # Generate verification code and send email verification_code =

JWT Authentication with Djoser

2024-02-15 Thread MISHEL HANNA
hello i want to make api for register but i want modify the way of email activation in djoser to activate email it done by uuid/token but i do not want it to be done like that i want to activate the email by verification code do you have any suggestions or any other libraries i can use it -- Y

Re: 'NoneType' object has no attribute 'get_host' in google authentication

2023-11-05 Thread Amen Guda
thod on an > object that is None. Specifically, this error often arises when accessing a > request object's get_host() method when the request object itself is None.* > > This issue is commonly associated with Google authentication in Django, > especially when redirect URLs are i

Re: 'NoneType' object has no attribute 'get_host' in google authentication

2023-11-05 Thread Amen Guda
n the request object itself is None.* This issue is commonly associated with Google authentication in Django, especially when redirect URLs are involved. To resolve this, consider the following steps: *Check the Request Object:* Ensure that the request object is being passed correctly. If the code

Re: 'NoneType' object has no attribute 'get_host' in google authentication

2023-11-05 Thread Amen Guda
it tried one pattern for the URL: 'add_time_slot/(?P[0-9]+)/\Z'.* On Tue, Oct 24, 2023 at 2:20 PM marvel wrote: > Hello guys im seeing this error when > > Trying to use allauth for google authentication how can I solve it > > > > -- > You received this message bec

Re: 'NoneType' object has no attribute 'get_host' in google authentication

2023-10-24 Thread Migui Galan
Hi marvel! Can we see the full error message so we can visually/fully understand the issue. thank you! On Tue, Oct 24, 2023 at 7:21 PM marvel wrote: > Hello guys im seeing this error when > > Trying to use allauth for google authentication how can I solve it > > > > -

'NoneType' object has no attribute 'get_host' in google authentication

2023-10-24 Thread marvel
Hello guys im seeing this error when Trying to use allauth for google authentication how can I solve it  -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email

Re: User log in authentication problem in Django

2023-07-31 Thread AYUSH GUPTA
Why u create registration model for authentication because authentication model already included when u run command make migrations. U only import django.contrib.auth import User, authenticate and use On Sun, Jul 30, 2023, 7:02 AM Mh Limon wrote: > This is my views.py code. when providing

Ynt: User log in authentication problem in Django

2023-07-31 Thread Serkan Gülten
Password should be hash not just string Windows için Posta ile gönderildi Kimden: Mh LimonGönderilme: 30 Temmuz 2023 Pazar 04:32Kime: Django usersKonu: User log in authentication problem in Django This is my views.py code. when providing the correct username and password, the system consistently

Re: Problems in Django login authentication

2023-07-31 Thread Joshua Urasa
To add up..I see others comments told you to abstractUser ... this is when you need to modify the default user maybe to add up other fields in default user like age or date but from you code above you didn't abstractUser so follow my previous comment and am sure you code will work On Sun, Jul 30,

Ynt: Problems in Django login authentication

2023-07-31 Thread Serkan Gülten
Password should be hash not just string Windows için Posta ile gönderildi Kimden: Mh LimonGönderilme: 30 Temmuz 2023 Pazar 04:32Kime: Django usersKonu: Problems in Django login authentication Views.py file  from django.shortcuts import render,HttpResponse,redirectfrom .models import

Re: Problems in Django login authentication

2023-07-31 Thread Joshua Urasa
If you use default user there is no need to write your model because is there by default so what you need to do create is form.py and inside it import usercreationform from then that form import to your view so that to handle response and request On Sun, Jul 30, 2023, 08:34 Prashanth Patelc wrote

Re: Problems in Django login authentication

2023-07-30 Thread Mh Limon
Thank you all.My problem is solved. On Sunday, July 30, 2023 at 11:34:43 AM UTC+6 Prashanth Patelc wrote: > Use default django user model > > from django.contrib.auth.models import User > # Create your models here. > class Registration (models.Model): > author = models.ForeignKey(User, on_de

Re: Problems in Django login authentication

2023-07-29 Thread Prashanth Patelc
Use default django user model from django.contrib.auth.models import User # Create your models here. class Registration (models.Model): author = models.ForeignKey(User, on_delete=models.CASCADE) # write your fields here In settings.py AUTH_USER_MODEL = app name . Modelname On Sun, Jul 3

Re: Problems in Django login authentication

2023-07-29 Thread Mohammad Ehsan Ansari
First extend abstract user model or abstract base user model in your user model and after that define auth.model in settings.py hope its workSent from my iPhoneOn 30-Jul-2023, at 10:45 AM, Abdulrahman Abbas wrote:Can you login with superuser?On Sun, Jul 30, 2023, 02:32 Mh Limon

Re: Problems in Django login authentication

2023-07-29 Thread Abdulrahman Abbas
Can you login with superuser? On Sun, Jul 30, 2023, 02:32 Mh Limon wrote: > Views.py file > > from django.shortcuts import render,HttpResponse,redirect > from .models import registration > from django.contrib.auth import authenticate,login > > def home(request): > return render(request,'home

Problems in Django login authentication

2023-07-29 Thread Mh Limon
Views.py file from django.shortcuts import render,HttpResponse,redirect from .models import registration from django.contrib.auth import authenticate,login def home(request): return render(request,'home.html') def log_in(request): if request.method == 'POST': username = request.

User log in authentication problem in Django

2023-07-29 Thread Mh Limon
This is my views.py code. when providing the correct username and password, the system consistently displays an error message stating "You have incorrect Username or password." from django.shortcuts import render,HttpResponse,redirect from .models import registration from django.contrib.auth impo

Re: A picturesque authentication problem ONLY in Google Chrome

2023-06-08 Thread Rogério Carrasqueira
Hello Fabio, Thanks for you reply, this must be considered on both sites or only in subdomain? Thanks again! Em quinta-feira, 8 de junho de 2023 às 16:14:37 UTC-3, Fabio C. Barrionuevo da Luz escreveu: > Try to define the SESSION_COOKIE_DOMAIN on your settings.py > > SESSION_COOKIE_DOMAIN=".d

Re: A picturesque authentication problem ONLY in Google Chrome

2023-06-08 Thread Fabio C. Barrionuevo da Luz
Try to define the SESSION_COOKIE_DOMAIN on your settings.py SESSION_COOKIE_DOMAIN=".dominio.com.br" https://docs.djangoproject.com/en/4.2/ref/settings/#session-cookie-domain https://django.readthedocs.io/en/1.4.X/ref/settings.html#session-cookie-domain That said, Django 1.4.22 was released 8 yea

A picturesque authentication problem ONLY in Google Chrome

2023-06-08 Thread Rogerio Carrasqueira
Hello All! All good? I'm running an application in Django 1.4.22 and some days I'm facing some difficulties for my users to access the restricted area of my site. It so happens that I have the site running on the main domain www.dominio.com.br and the restricted area on app.dominio.com.br, both ru

Re: Tokenized Authentication for subdomains

2023-05-26 Thread Vishesh Mangla
found some ideas for implementing Oauth/openID connect > authentication in Django (wasn't much help). Seeing, I don't intend on > using third-party providers for this one. > > I have an idea of how it should work 'on paper', but it gets fuzzy when I > start thinking about ser

SV: Tokenized Authentication for subdomains

2023-05-26 Thread Mwamuzi Shadrick
So, you just want to use ngix in your django website? Sendt fra E-post for Windows Fra: Vishesh ManglaSendt: 25 May 2023 kl. 07:42Til: django-users@googlegroups.comEmne: Re: Tokenized Authentication for subdomains use nginx as reverse proxy  On Thu, 25 May, 2023, 07:35 André Lewis, <iamandr

Re: Tokenized Authentication for subdomains

2023-05-24 Thread Vishesh Mangla
menting Oauth/openID connect > authentication in Django (wasn't much help). Seeing, I don't intend on > using third-party providers for this one. > > I have an idea of how it should work 'on paper', but it gets fuzzy when I > start thinking about server-end verification

Tokenized Authentication for subdomains

2023-05-24 Thread André Lewis
Hi, I'm currently working on a project with subdomains, and I wanted to authenticate the user across the site, regardless of the url. I did some digging and found some ideas for implementing Oauth/openID connect authentication in Django (wasn't much help). Seeing, I don't intend

Re: django windows authentication

2023-05-19 Thread Isaac Samuel
https://django-windowsauth.readthedocs.io/en/latest/ On Fri, May 19, 2023, 09:44 Chelsea Fan wrote: > Hello guys, what is windows authentication and how is it work in django > and how can I realize it? > > -- > You received this message because you are subscribed to th

Re: django windows authentication

2023-05-19 Thread Chelsea Fan
thank you On Fri, May 19, 2023 at 2:44 PM Brian Gitau wrote: > Hello! Windows authentication is a method of authenticating users based on > their Windows credentials. It allows users to log in to a system using > their Windows username and password, eliminating the need for

Re: django windows authentication

2023-05-19 Thread Brian Gitau
Hello! Windows authentication is a method of authenticating users based on their Windows credentials. It allows users to log in to a system using their Windows username and password, eliminating the need for separate authentication mechanisms. In Django, you can integrate Windows authentication

django windows authentication

2023-05-19 Thread Chelsea Fan
Hello guys, what is windows authentication and how is it work in django and how can I realize it? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to dj

Re: Need way of authentication with google without using an allauth packages

2023-02-28 Thread Jeman Kumar
https://python-social-auth.readthedocs.io/en/latest/configuration/django.html On Tue, 28 Feb, 2023, 12:50 pm MaheshKumar, wrote: > I need how to create an google authentication without using the django > -allauth packages. > > > Please give me an idea to create an flow of auth

Re: Need way of authentication with google without using an allauth packages

2023-02-28 Thread Vineet Kothari
> I need how to create an google authentication without using the django >> -allauth packages. >> >> >> Please give me an idea to create an flow of authentication with google in >> django >> >> -- >> You received this message because you are subscribed to

Re: Need way of authentication with google without using an allauth packages

2023-02-28 Thread Dev Femi Badmus
google cloud auth or account auth, which one?? On Tue, Feb 28, 2023 at 8:21 AM MaheshKumar wrote: > I need how to create an google authentication without using the django > -allauth packages. > > > Please give me an idea to create an flow of authentication with google in > d

Need way of authentication with google without using an allauth packages

2023-02-27 Thread MaheshKumar
I need how to create an google authentication without using the django -allauth packages. Please give me an idea to create an flow of authentication with google in django -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubs

Re: Django microservice authentication problem.

2023-02-02 Thread Mohammad Anarul
Thanks, guys The Django user group is very helpful. On Sun, Jan 29, 2023 at 12:54 PM Lauro Cesar de Oliveira (olarva) < ola...@gmail.com> wrote: > Hello there. > > First thing: show us the error. > > Getting status code 400? > > Probably a wrong setting of one of those (or maybe all): > > ALLOWED

Re: Django microservice authentication problem.

2023-01-28 Thread Lauro Cesar de Oliveira (olarva)
Hello there. First thing: show us the error. Getting status code 400? Probably a wrong setting of one of those (or maybe all): ALLOWED_HOSTS CORS_ALLOWED_ORIGINS CSRF_TRUSTED_ORIGINS CSRF_USE_SESSIONS MIDDLEWARE When working with microservice make sure the reverse-proxy/loadbalance is s

Re: Django microservice authentication problem.

2023-01-28 Thread 'Steven Mapes' via Django users
Are you trying to authenticate via Django Rest FrameWork API or via the standard Django authentication system? It shouldn't really matter which it is as both can be scaled horizontally and you'll have no issue with authenticating so in order for us to help we'd need to understan

Django microservice authentication problem.

2023-01-27 Thread Mohammad Anarul
How to communicate and authenticate with multiple Django servers. Is it possible? If possible you can help me, I am trying more than 15 days in this section but not getting any solution. Please share with me any requirements like books, videos, blogs, or code examples. -- You received this mess

Re: User model override and authentication

2022-10-24 Thread Abhishek Kumar
model, and change the fields "username" >> to "sr_usuario" and "password" to "sr_password", but I would like to >> continue using all Django's default authentication scheme and permissions. >> I want not only to change the description in th

Re: User model override and authentication

2022-10-24 Thread Muhammad Juwaini Abdul Rahman
ike to know how and if it's possible > to do it. > > I need to override Django's user model, and change the fields "username" > to "sr_usuario" and "password" to "sr_password", but I would like to > continue using all Django'

Re: User model override and authentication

2022-10-24 Thread Ayser shuhaib
7;s user model, and change the fields "username" > to "sr_usuario" and "password" to "sr_password", but I would like to > continue using all Django's default authentication scheme and permissions. > I want not only to change the description in the

User model override and authentication

2022-10-24 Thread Rafael Noronha
Hello guys, I'm not advanced in Django and would like to know how and if it's possible to do it. I need to override Django's user model, and change the fields "username" to "sr_usuario" and "password" to "sr_password", but I would like

More documentation needed - Channels with multiple authentication backends

2022-09-05 Thread Laurent De Buyst
Greetings, I've started using channels in an existing application (because IDOM requires it), which has two authentication backends (one local, one LDAP): AUTHENTICATION_BACKENDS = [ "django_auth_ldap.backend.LDAPBackend", "django.contrib.auth.backends.ModelBackend&

Re: User authentication with simple-jwt drf

2022-08-31 Thread Mobina J
ption as e: messages.error(request, e) context = { 'form': form, 'value': demo } return render(request, 'index.html', context) else: context = {'form': form} return render(request, 'index.html', context) this is my code...I want to show failed mail to the

User authentication with simple-jwt drf

2022-08-24 Thread Lakshyaraj Dash
Hello everyone, I want to create a user authentication app using ReactJS and django. But facing problems in authenticating with the jsonwebtokens in ReactJS. Can anybody provide correct guide of implementing DjangoRestFramework simple-jwt and ReactJS jet ? -- You received this message because

Re: plz help user authentication

2022-08-24 Thread Wazed Khan
Use the relationship in this way Product -> Seller-> User Instead Product -> User -> Seller On Wed, Aug 24, 2022, 7:18 PM MAHESH KUMAR wrote: > > 1. User Authentication APIs: > 1. get or create user by phone number, params: “phone_no”, response > {“user_id”,”auth_

Re: plz help user authentication

2022-08-24 Thread MAHESH KUMAR
1. User Authentication APIs: 1. get or create user by phone number, params: “phone_no”, response {“user_id”,”auth_token”}, 2. get or create user by email, params: “email”, response {“user_id”,”auth_token”}, how to write this i was try but i didn't get plz help sir On Friday, Augu

Re: Google Authentication code

2022-07-26 Thread Victor Dickson
e trying to > add Google authentication to your Django project. I've used: > https://python-social-auth.readthedocs.io/en/latest/ > > ...with good results in the past. I've also heard good things about: > > https://django-allauth.readthedocs.io/en/latest/ > > ...

Re: Google Authentication code

2022-07-25 Thread Ryan Nowakowski
Your question is a little unclear but I'm assuming that you are trying to add Google authentication to your Django project. I've used: https://python-social-auth.readthedocs.io/en/latest/ ...with good results in the past. I've also heard good things about: https://django-allauth

Re: Role based Authentication

2022-07-21 Thread Mihir Patel
ername": UsernameField} def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) password = self.fields.get("password") if password: password.help_text = password.help_text.format("../password/") user_permissions = self.fi

Re: How to use Authentication in DRF

2022-07-21 Thread Ammar Mohammed
How is your login view working ? Or this is your login view ? Please share the whole app views and urls. (I suggest using DRF class based views as it's alot useful and helpful when it comes to authentication and permissions) Regards, -- Ammar Mohammed On 21 Jul 2022 08:24, "Sa

Re: How to use Authentication in DRF

2022-07-20 Thread Salima Begum
want is JSON Response. Why it's not reading credentials I mentioned there? Thanks ~Salima On Thu, Jul 21, 2022 at 10:58 AM Ammar Mohammed wrote: > Hey Salima > I guess you can use access token authentication in DRF. > But Do you recive the response without logging in? > Plea

Re: How to use Authentication in DRF

2022-07-20 Thread Ammar Mohammed
Hey Salima I guess you can use access token authentication in DRF. But Do you recive the response without logging in? Please explain more please -- Ammar Mohammed +249 113075979 On 21 Jul 2022 07:08, "Salima Begum" wrote: > Hi all, > > I am trying to convert my current proj

Re: Google Authentication code

2022-07-20 Thread André Hangalo
You ca read a book “Django 3 by examples” Have 2 Methodist authentication, google, Facebook Sent from my iPhone > On 20/07/2022, at 14:56, 'Kasper Laudrup' via Django users > wrote: > > On 20 July 2022 15.03.20 CEST, Ankit Chaurasia > wrote: >> Hello De

Re: Google Authentication code

2022-07-20 Thread 'Kasper Laudrup' via Django users
On 20 July 2022 15.03.20 CEST, Ankit Chaurasia wrote: >Hello Dev, >Can anyone send me Google Authentication code or any exp ? > https://www.section.io/engineering-education/django-google-oauth/ That was the first page I found using one of those "internet search engines" y

Google Authentication code

2022-07-20 Thread Ankit Chaurasia
Hello Dev, Can anyone send me Google Authentication code or any exp ? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@google

Re: External Authentication with username in header

2022-07-19 Thread Hella thor
gt; include a username and password in the header. The header would be >>>> intercepted somehow (Middleware?) and the user marked as authenticated. The >>>> app will then launch for the user with a default role. >>>> >>>> This will replace a login pag

Re: External Authentication with username in header

2022-07-19 Thread Anh Nguyen
will >>> then launch for the user with a default role. >>> >>> This will replace a login page and Django internal authentication. >>> >>> Can I implement this using middleware? If so, how? >>> >>> Thank you >>> >>> -- >

Re: External Authentication with username in header

2022-07-19 Thread tcouch
app will >> then launch for the user with a default role. >> >> This will replace a login page and Django internal authentication. >> >> Can I implement this using middleware? If so, how? >> >> Thank you >> >> -- You received this message because y

Re: External Authentication with username in header

2022-07-18 Thread Ryan Nowakowski
alhost:8000. I would like to include a >username and password in the header. The header would be intercepted >somehow (Middleware?) and the user marked as authenticated. The app will >then launch for the user with a default role. > >This will replace a login page and Django in

Re: External Authentication with username in header

2022-07-17 Thread Abdul Qoyyuum
That sounds like a Single Sign On or a Central Authentication Service. This stackoverflow shows some suggestions https://stackoverflow.com/q/4662348/1431104 Or if your "External Authentication" is a known provider service, you could take a look at django-allauth. On Sat, Jul 16, 2022

External Authentication with username in header

2022-07-15 Thread Mark Glass
launch for the user with a default role. This will replace a login page and Django internal authentication. Can I implement this using middleware? If so, how? Thank you -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe

Re: Supertypes, subtypes and authentication

2022-03-24 Thread Gabriel Araya Garcia
If you had implemented the authentication in your app, then I think, it would be more easy to develop other things more complex. Remember in Django you can give permission at users group Gabriel Araya Garcia GMI - Desarrollo de Sistemas Informáticos El mar, 22 mar 2022 a las 10:12

Re: Supertypes, subtypes and authentication

2022-03-24 Thread Sebastian Jung
Helli Anne, Authirization is automatical implemented in django. You need a login page and ggf. A Registration page. https://ordinarycoders.com/blog/article/django-user-register-login-logout This has nothing to do with a relationship from article to a User or a node. Regards Regards 'AnneVerm

Re: Supertypes, subtypes and authentication

2022-03-24 Thread 'AnneVerm' via Django users
Hello, Thanks for your reply. I have a Postgres database, node, organization, person and thing are modelled like this: CREATE TABLE public.ntw_node ( id integer NOT NULL DEFAULT nextval('ntw_node_id_seq'::regclass), CONSTRAINT ntw_node_pkey PRIMARY KEY (id) ) CREATE TABLE public.ntw_or

Re: Supertypes, subtypes and authentication

2022-03-22 Thread Antonis Christofides
a web aplication in which I have a supertype node which is subtyped by organization, person and thing. Nodes can have permission to create/update/delete addresses, events, articles, pages etc. which all have a foreignkey referencing node. I'm struggling with the authentication and autho

Supertypes, subtypes and authentication

2022-03-22 Thread 'AnneVerm' via Django users
I'm working on a web aplication in which I have a supertype node which is subtyped by organization, person and thing. Nodes can have permission to create/update/delete addresses, events, articles, pages etc. which all have a foreignkey referencing node. I'm struggling with the auth

authentication with simply importing django.contrib.auth import authinticate didnt worked

2022-03-11 Thread things matters
how can i make authintication of custom model user in view method apart from default user model -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+uns

Re: Authentication by proxy server was unsuccessful ,what the problem?, that's the output from my browser .

2022-02-18 Thread kuda ronnie
https://stackoverflow.com/questions/19094720/how-to-automatically-reload-django-when-files-change On Fri, Feb 18, 2022 at 9:50 AM Heman Okumbo wrote: > Probably a refresh or caches to detect changes made to settings,as i had > earlier included additional settings.Thnx for the tip.How can you ref

Re: Authentication by proxy server was unsuccessful ,what the problem?, that's the output from my browser .

2022-02-17 Thread Heman Okumbo
Probably a refresh or caches to detect changes made to settings,as i had earlier included additional settings.Thnx for the tip.How can you refresh the django server? On Thu, Feb 17, 2022, 22:10 kuda ronnie wrote: > i think its something to do with caching, refresh error i guess. u see > after u

Re: Authentication by proxy server was unsuccessful ,what the problem?, that's the output from my browser .

2022-02-17 Thread kuda ronnie
i think its something to do with caching, refresh error i guess. u see after u connected the internet. the glitch was resolved. On Wed, Feb 16, 2022 at 4:03 PM Heman Okumbo wrote: > I was running manage.py runserver without internet connection on my > machine and getting the above error.After

Re: Multiple websites but one authentication system

2021-08-26 Thread Isaac Imafidon
amp;utm_content=webmail&utm_term=link> <#DAB4FAD8-2DD7-40BB-A1B8-4E2AA1F9FDF2> On Thu, 26 Aug 2021 at 11:02, Christian Ledermann < christian.lederm...@gmail.com> wrote: > I did this in the past by setting up > https://github.com/jazzband/django-oauth-toolkit as an authenti

Re: Multiple websites but one authentication system

2021-08-26 Thread Isaac Imafidon
the past by setting up > https://github.com/jazzband/django-oauth-toolkit as an authentication > server at login.my-domain.com and then connecting the other websites with > https://github.com/python-social-auth/social-app-django to it > > > > On Thu, 26 Aug 2021 at 10:15, Steven

Re: Multiple websites but one authentication system

2021-08-26 Thread Christian Ledermann
I did this in the past by setting up https://github.com/jazzband/django-oauth-toolkit as an authentication server at login.my-domain.com and then connecting the other websites with https://github.com/python-social-auth/social-app-django to it On Thu, 26 Aug 2021 at 10:15, Steven Mapes wrote

Re: Multiple websites but one authentication system

2021-08-26 Thread Steven Mapes
You could use oauth between the projects. Look into https://django-oauth-toolkit.readthedocs.io/en/latest/ which would enable you to set up domain one as your authentication backend which the others could use On Thursday, 26 August 2021 at 09:46:11 UTC+1 Isaac wrote: > Am trying to underst

Re: Multiple websites but one authentication system

2021-08-26 Thread Isaac
ompany website and there will be having more websites as >> time goes on, they don't want to be creating authentication system in each >> of their website. To avoid stress in creating multi account on these >> platform, there is a need to have one website that will d

Re: Multiple websites but one authentication system

2021-08-26 Thread Eugene TUYIZERE
be having more websites as > time goes on, they don't want to be creating authentication system in each > of their website. To avoid stress in creating multi account on these > platform, there is a need to have one website that will do everything > relating to authentication and author

Multiple websites but one authentication system

2021-08-26 Thread Isaac
Am working on a company website and there will be having more websites as time goes on, they don't want to be creating authentication system in each of their website. To avoid stress in creating multi account on these platform, there is a need to have one website that will do every

Re: Role based Authentication

2021-07-07 Thread DJANGO DEVELOPER
can you please give me a example? so that I can understand it well. thanks in advance. Virus-free. www.avast.com

Re: Role based Authentication

2021-07-07 Thread Avi shah
you can normally do it using fbv's , just make sure while saving the model , you also save the user model also parallely with the student model(in reference with my repo) On Thu, Jul 8, 2021 at 7:44 AM DJANGO DEVELOPER wrote: > Avi Shah I have just visited your github repo. is there any other co

Re: Role based Authentication

2021-07-07 Thread DJANGO DEVELOPER
Avi Shah I have just visited your github repo. is there any other code where you have performed multi-user sign up with FBV's? On Thu, Jul 8, 2021 at 4:53 AM sum abiut wrote: > From the admin site you can create different groups and then assign > specific users to specific groups. > then filter

Re: Role based Authentication

2021-07-07 Thread sum abiut
>From the admin site you can create different groups and then assign specific users to specific groups. then filter users' roles based on the specific group that you have assigned them to. On Thu, Jul 8, 2021 at 3:53 AM Lalit Suthar wrote: > you can extend User model and have a role field in

Re: Authentication with Multiple User

2021-07-07 Thread Ridwan Adeyemo
Thanks a lot for this I would try it as soon as possible. Best Regards. On Tue, Jul 6, 2021, 9:39 PM Joel Tanko <7thog...@gmail.com> wrote: > If what you're trying to do is have two types of user accounts, then you'd > have to create a base user model and have personal and business inherit > from

Re: Role based Authentication

2021-07-07 Thread Lalit Suthar
you can extend User model and have a role field in default User model https://simpleisbetterthancomplex.com/tutorial/2016/07/22/how-to-extend-django-user-model.html On Wed, 7 Jul 2021 at 20:47, Avi shah wrote: > https://github.com/Avishah123/Multi-user-auth1 > > On Wed, Jul 7, 2021 at 8:16 PM DJ

Re: Role based Authentication

2021-07-07 Thread Avi shah
https://github.com/Avishah123/Multi-user-auth1 On Wed, Jul 7, 2021 at 8:16 PM DJANGO DEVELOPER wrote: > f > > On Wed, Jul 7, 2021 at 7:07 PM LokRaj Kumar Vuppu < > lokrajkumarvu...@gmail.com> wrote: > >> How to assign a role to user when registered into our application. >> >> -- >> You received

Re: Role based Authentication

2021-07-07 Thread DJANGO DEVELOPER
f On Wed, Jul 7, 2021 at 7:07 PM LokRaj Kumar Vuppu < lokrajkumarvu...@gmail.com> wrote: > How to assign a role to user when registered into our application. > > -- > You received this message because you are subscribed to the Google Groups > "Django users" group. > To unsubscribe from this group

Role based Authentication

2021-07-07 Thread LokRaj Kumar Vuppu
How to assign a role to user when registered into our application. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To

Re: Authentication with Multiple User

2021-07-06 Thread Joel Tanko
If what you're trying to do is have two types of user accounts, then you'd have to create a base user model and have personal and business inherit from it - and it being a subclass of AbstractBaseUser class BaseAccount(AbstractBaseUser): … # all public fields class PersonalAccount(BaseAcc

Authentication with Multiple User

2021-06-29 Thread Ridwan Adeyemo
Hello, How do I implement a multiple users registration/signup form. For example the user needs to have (username, name password, and confirm password ) while the seller is going to have (Business Name, Business Email, address, tax id, phone number and password, and confirm password) Best Reg

Re: django app with okta authentication --

2021-06-01 Thread Ryan Nowakowski
On Tue, Jun 01, 2021 at 10:18:24PM +0530, SNJY G wrote: > I am running an application on django2.2 which needs to be integrated with > okta for user authentication. > Okta team has provided a Metadata URL which contains Okta URL, Okta Entity > ID and Okta certificate but I am not sure

django app with okta authentication --

2021-06-01 Thread SNJY G
Team, I am running an application on django2.2 which needs to be integrated with okta for user authentication. Okta team has provided a Metadata URL which contains Okta URL, Okta Entity ID and Okta certificate but I am not sure where I need to configure it in django. Could someone please share

Re: Authentication using Email or Password

2021-05-05 Thread sanosh jacob
U can use ur user model on django to authenticate user. It have a function to authenticate the user. Or u can create ur own database and validate the input with that data. Sent from my Huawei Mobile Original Message Subject: Authentication using Email or PasswordFrom: 'Muh

  1   2   3   4   5   6   7   8   9   10   >