Graphql Auth

Alternatives To Graphql Auth
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Next Auth16,838217314 hours ago567August 01, 2022245iscTypeScript
Authentication for the Web.
Satellizer8,01728464 years ago56August 30, 2016287mitTypeScript
Token-based AngularJS Authentication
Octokit.rb3,76136,2266654 days ago129September 14, 202260mitRuby
Ruby toolkit for the GitHub API
Devise_token_auth3,4461,51613a month ago112July 19, 2021188wtfplRuby
Token based authentication for Rails JSON APIs. Designed to work with jToker and ng-token-auth.
Jwt Spring Security Demo2,534
3 years ago2mitJava
A demo for using JWT (Json Web Token) with Spring Security and Spring Boot 2
Fosite2,0615064a month ago278April 17, 202231apache-2.0Go
Extensible security first OAuth 2.0 and OpenID Connect SDK for Go.
Auth Module1,848139322 months ago51April 16, 2020195mitTypeScript
Zero-boilerplate authentication support for Nuxt.js!
Ng Token Auth1,828
a year ago2September 19, 2015117wtfplCoffeeScript
Token based authentication module for angular.js.
Twython1,7861,128282 years ago61July 16, 202121mitPython
Actively maintained, pure Python wrapper for the Twitter API. Supports both normal and streaming Twitter APIs.
Pushy1,629107a month ago19October 13, 201921mitJava
A Java library for sending APNs (iOS/macOS/Safari) push notifications
Alternatives To Graphql Auth
Select To Compare


Alternative Project Comparisons
Readme

GraphQL Auth with JSON Web Tokens

This repo demonstrates some ways you might build authentication and authorization logic into your GraphQL API. GraphQL itself does not prescribe any particular way to do auth and those details are left up to the developer.

The approaches here may or may not be suitable for your own implementation.

JSON Web Tokens

This GraphQL server uses JSON Web Tokens (JWT) for authorization. You will need some tokens to begin with to test the API. Here are a few you can use:

JWT With No Scope

eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJncmFwaHFsLXRlc3Qtc2VydmVyIiwiaWF0IjoxNTA5MDQxMTE3LCJleHAiOjE1NDA1NzcxMTcsImF1ZCI6ImdyYXBocWwtdGVzdC1hcGkiLCJzdWIiOiIxMjMifQ.tTRbNKT58UqRMqMkf8cLenRZ0qvf15mUl6N6dWyn_Wo

JWT With write:articles Scope

eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJncmFwaHFsLXRlc3Qtc2VydmVyIiwiaWF0IjoxNTA5MDQxMTE3LCJleHAiOjE1NDA1NzcxMTcsImF1ZCI6ImdyYXBocWwtdGVzdC1hcGkiLCJzdWIiOiIxMjMiLCJzY29wZSI6IndyaXRlOmFydGljbGVzIn0.mupYodqVggdF1fZaiyVdfOGLwY_R3KISGBTCJ7hhH5U

The sub claim in these tokens is 123 which maps to the same author ID in the supplied data.

The secret key for these tokens is found in the .env file. THIS SECRET KEY IS TERRIBLY WEAK, DO NOT USE IT IN PRODUCTION.

To test the API, attach one of the tokens to the Authorization header in your requests using the Bearer scheme. For example:

Authorization: Bearer eyJ0...

License

MIT

Popular Token Projects
Popular Authentication Projects
Popular Security Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Token
Auth
Graphql
Jwt
Authorization