jazzband / djangorestframework-simplejwt

A JSON Web Token authentication plugin for the Django REST Framework.
https://django-rest-framework-simplejwt.readthedocs.io/
MIT License
4.03k stars 664 forks source link

Can django 5.0 be used? Just use basic verification methods #811

Open Ztl36 opened 6 months ago

Ztl36 commented 6 months ago

We want to upgrade the project to django 5.0, can this library be used

IAdejokun commented 6 months ago

We want to upgrade the project to django 5.0, can this library be used

Have you been able to figure how to use the library with Django 5.0?

Ztl36 commented 6 months ago

We want to upgrade the project to django 5.0, can this library be used

Have you been able to figure how to use the library with Django 5.0? I did not have a complete learning experience. Due to the upgrade of Python from 2.7 to 3.11.9 and the default installation being django 5.0, the project requires the use of django 5.0. I need to replace the code of the previous core djangorestframework jwt with simplejwt

IAdejokun commented 6 months ago

We want to upgrade the project to django 5.0, can this library be used

Have you been able to figure how to use the library with Django 5.0?

I did not have a complete learning experience. Due to the upgrade of Python from 2.7 to 3.11.9 and the default installation being django 5.0, the project requires the use of django 5.0. I need to replace the code of the previous core djangorestframework jwt with simplejwt

Are there any alternatives to simple jwt? I think we might have to step down the Django version to use simple jwt cause of the requirements, I tried to ignore it (the requirements) and just use it but I just kept running into errors which were probably due to compatibility. image

Ztl36 commented 6 months ago

We want to upgrade the project to django 5.0, can this library be used

Have you been able to figure how to use the library with Django 5.0?

I did not have a complete learning experience. Due to the upgrade of Python from 2.7 to 3.11.9 and the default installation being django 5.0, the project requires the use of django 5.0. I need to replace the code of the previous core djangorestframework jwt with simplejwt

Are there any alternatives to simple jwt? I think we might have to step down the Django version to use simple jwt cause of the requirements, I tried to ignore it (the requirements) and just use it but I just kept running into errors which were probably due to compatibility. image

The project has been upgraded to 5.0.6, and some parts have been rewritten using simplejwt. However, only the most basic access token and refresh are used, and the rest are not used. What impact will it have? I will further study the differences between 5.0 and 4.2.

IAdejokun commented 6 months ago

We want to upgrade the project to django 5.0, can this library be used

Have you been able to figure how to use the library with Django 5.0?

I did not have a complete learning experience. Due to the upgrade of Python from 2.7 to 3.11.9 and the default installation being django 5.0, the project requires the use of django 5.0. I need to replace the code of the previous core djangorestframework jwt with simplejwt

Are there any alternatives to simple jwt? I think we might have to step down the Django version to use simple jwt cause of the requirements, I tried to ignore it (the requirements) and just use it but I just kept running into errors which were probably due to compatibility. image

The project has been upgraded to 5.0.6, and some parts have been rewritten using simplejwt. However, only the most basic access token and refresh are used, and the rest are not used. What impact will it have? I will further study the differences between 5.0 and 4.2.

I really don't know the impact tbh. I'm just a Django newbie myself. I'd also study the differences myself so I don't bump into a lot of issues due to downgrading.

Ztl36 commented 6 months ago

We want to upgrade the project to django 5.0, can this library be used

Have you been able to figure how to use the library with Django 5.0?

I did not have a complete learning experience. Due to the upgrade of Python from 2.7 to 3.11.9 and the default installation being django 5.0, the project requires the use of django 5.0. I need to replace the code of the previous core djangorestframework jwt with simplejwt

Are there any alternatives to simple jwt? I think we might have to step down the Django version to use simple jwt cause of the requirements, I tried to ignore it (the requirements) and just use it but I just kept running into errors which were probably due to compatibility. image

The project has been upgraded to 5.0.6, and some parts have been rewritten using simplejwt. However, only the most basic access token and refresh are used, and the rest are not used. What impact will it have? I will further study the differences between 5.0 and 4.2.

I really don't know the impact tbh. I'm just a Django newbie myself. I'd also study the differences myself so I don't bump into a lot of issues due to downgrading.

Looking forward to the update of simplejwt to support django 5.0.6 later

IAdejokun commented 6 months ago

We want to upgrade the project to django 5.0, can this library be used

Have you been able to figure how to use the library with Django 5.0?

I did not have a complete learning experience. Due to the upgrade of Python from 2.7 to 3.11.9 and the default installation being django 5.0, the project requires the use of django 5.0. I need to replace the code of the previous core djangorestframework jwt with simplejwt

Are there any alternatives to simple jwt? I think we might have to step down the Django version to use simple jwt cause of the requirements, I tried to ignore it (the requirements) and just use it but I just kept running into errors which were probably due to compatibility. image

The project has been upgraded to 5.0.6, and some parts have been rewritten using simplejwt. However, only the most basic access token and refresh are used, and the rest are not used. What impact will it have? I will further study the differences between 5.0 and 4.2.

I really don't know the impact tbh. I'm just a Django newbie myself. I'd also study the differences myself so I don't bump into a lot of issues due to downgrading.

Looking forward to the update of simplejwt to support django 5.0.6 later

Same here :) .

pgcd commented 2 months ago

Django 5.1.1 here and everything seems to be working.