Smit Bhoraniyasmit-bhoraniya.hashnode.dev·Jul 15, 2023The Power of Access Tokens and Refresh Tokens: A Guide to Secure AuthenticationA token is a piece of data that serves as a representation or proof of authorization. It is typically used to authenticate and validate the identity of a user or a client application in order to grant access to certain resources or perform specific a...Discuss·10 likes·82 readsaccess-token
Suraj Somanisurajsomani.hashnode.dev·Apr 8, 2023Get bearer token using postman & Azure REST API- Grant type as Client CredentialsIn this post, we will go through steps to get a bearer token which will be used to invoke Azure-provided APIs for various services. We will also learn some basics of using the Postman client app. Run Postman application- first create a new environme...Discuss·175 readsAzure REST APIsAzure
Sharif Elkassedblog.saleshorse.org·Mar 26, 2023Getting a Salesforce access token with PostmanWhy do I need an access token? Access tokens are part of the authentication flow for accessing a resource that lives within Salesforce. Think of it as your way of proving that you are allowed to have access to that resource. For example, let's say ...Discuss·8 likes·353 readsSalesforce
Santosh Managulisantoshmanaguli.hashnode.dev·Feb 12, 2023[FIXED] Why is GitLab asking me to enter my user credentials?It isn't very pleasant to enter your credentials every time, to push or pull code from your repo. After doing a lot of google searches I found some ways:-1. Using SSH keygen method.2. By generating an access token. By popular belief SSH keygen method...Discuss·1 like·220 readsGit
Kristof RiebbelsProdotnet.kriebbels.me·Feb 5, 2023OAuth2 / Open Id Connect / (access|id)_tokenPreviously On… In my previous post, I zoomed in on my assignment. The development is about the creation of a registration of a user, using Auth0 authentication flows, actions,... . My responsibility is the creation of a BFF for the front end using As...Discuss·97 readsSecurityOAuth2
Abiola Bakareblog.iamstarcode.com·Dec 22, 2022Refresh Token rotation in NestJS JWT authenticationWhen creating server-side applications one of the things that come up in the early stages of development is authentication. Setting up a proper authentication can be quite daunting, you've got to decide how you secure your API properly, the strategy ...Discuss·2 likes·6.5K readsJWT
mathew adetunjimaytheu.hashnode.dev·Aug 7, 2022Access Token, Refresh token, and Refresh Token RotationWhat is Access Token? Access tokens are credentials encrypted using the JSON web token (jwt), access token contains data that grant access to protected resources on the server. The client (browser or app) is expected to attach the token to protected ...Discuss·1 like·107 readsaccess-token
Alessandroswiftuser.hashnode.dev·Jul 14, 2022How to: Implement an access token authentication with Tornado and PyJWTIn this article we are going to extend our Books project developed with Tornado and the Queries library. We will add token based authentication to our REST API. From this article we will add the following features: Add a Login Handler Add a Logout H...Discuss·110 readsPython
Sagar Medtiyablog.sagarmedtiya.com·Jun 14, 2022🔐Access Token and Refresh Token🔑This post will be a simple walkthrough to the access token and refresh token. Grab your seat belt and let's understand about token first.😊 So, what is a token? Token is a piece of data that carry enough information to work out the process of authent...Discuss·40 readsauthentication