jpadilla / django-rest-framework-jwt

JSON Web Token Authentication support for Django REST Framework
http://jpadilla.github.io/django-rest-framework-jwt/
MIT License
3.19k stars 649 forks source link

Custom Payload with Extend User #393

Closed tagmetag closed 6 years ago

tagmetag commented 6 years ago

I have a Extended User with sample serializers (Profile is Extend User, not Abstract User)

{
 "id": 3,
 "url": "http://localhost:8000/api/v1/users/demo/",
 "username": "demo",
 "first_name": "First",
 "last_name": "Demo",
 "profile": {
    "gender": null,
    "location": "Sa Pa",
    "date_of_birth": null,
    "job_title": null,
    "phone_number": null,
    "fax_number": "",
    "website": "",
    "intro": "",
    "bio": "",
    "interested_in": null,
    "languages": null,
    "quotes": null,
    "nickname": null
  }
}

How can I custom payload with all above fields and get it with axios? Now it just get payload:

authUser:Object
email:"test@gmail.com"
exp:1509183691
user_id:1
username:"First Demo"
token:"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VybmFtZSI6ImxlY29uZ3RvYW4iLCJ1c2VyX2lkIjoxLCJlbWFpbCI6ImRyYWZ0bGlnb25ncXVhbjdAZ21haWwuY29tIiwiZXhwIjoxNTA5MTgzNjkxfQ.KSEp-7g-SGDbqfspedNwkT1rABFi0UQ45yKDJDTX2zA"

I followed with this link: https://github.com/GetBlimp/django-rest-framework-jwt/issues/145 but isn't work Please help me!

Girbons commented 6 years ago

@feedgit Could you please post what you did?