Tag: authentication
-
header for authentication in django and graphql
0 { "Authorization": "JWT token" } and in graphQL my query is : query{ allStudents{ name roll } } but stil does’t work for me I am expecting to secure my api end point because all will create tokenauth then can access data import graphene from graphene_django.types import DjangoObjectType import graphql_jwt from .models import Student…
-
Best framework / language to create a backend service with user auth, service and GraphQL
0 I’m looking for advice on which backend language & framework to pick to implement user auth and GraphQL w/ custom business logic. I’ve built it in the past using Node.JS and manually setting up auth and SMS w/ Twilio, but I’m wondering whether there’s a faster way to do it these days (this was…
-
Should I use REST or GraphQL for the login?
0 I have a GraphQL API, but I have doubts about whether to login in a graphql mutation or do it in a REST endpoint, I know that it can be done in both ways. Any comments? I have read and even in some courses I heard that for the login the ideal is to…
-
user match query does not exist
0 I have been tasked to create separate user model for third_party users who are to access our endpoint so i created separate user named ApiCliet and inherited the Abstract user model of Django i also created a custom authentication for that user model only and then crated two mutation to create an api client…