New: jwtAll contenthive-129948hive-196917krzzansteemhive-183959hive-180932hive-166405photographyhive-185836uncommonlabhive-150122hive-183397hive-144064lifebitcoinhive-188619krsuccesshive-101145hive-139150hive-124908hive-184714hive-109690hive-103599hive-180301TrendingNewHotLikersrealmankwon (83)in hive-101145 • 2 years agosteemCreated with Sketch.[개발] JWT Refresh token 만료기간 갱신안녕하세요 @realmankwon 입니다. Refresh Token의 만료 기간을 주기적으로 갱신하는 방법은 다양하게 있지만, 일반적으로는 다음과 같이 구현할 수 있습니다. Refresh Token 발급 시에 해당 Refresh Token의 만료 기간을 기록합니다. 주기적으로 Refresh Token을 검사하면서 만료 기간이 일정 기간 미만으로…cacareth (25)in jwt • 3 years ago더 이상 JWT가 필요하지 않습니다.서명된 메시지를 사용하여 web3로 사용자를 인증하는 더 간단한 방법 Ethereum 로그인이 곧 사용자 표준이 되고 암호가 더 이상 필요하지 않다는 것은 비밀이 아닙니다. 그럼에도 불구하고 dApp 개발은 아직 상당히 젊은 방향이며 개발 표준이 많이 설정되어 있습니다. 이제 모든 개발자는 본능적으로 인증을 위해 동일한 JWT를 사용하여 기존…tkgcci (25)in jwt • 5 years agoTo allow devices to start verifications, you'll need to provide a JWT to the devices.To allow devices to start verifications, you'll need to provide a JWT to the devices. An optional value to change the number of verification code digits sent. The default value is 4, and…tkgcci (25)in jwt • 5 years agojwt_token: JSON cannot be changed and so often used for authentication servers.jwt_token: JSON cannot be changed and so often used for authentication servers. JSON Web Token is a URL Safe token containing JSON that can be signed. Signing means that you can check if the…rxge (47)in security • 5 years agosteemCreated with Sketch.How to Use JWT in your Express AppUsing JWT in your Express app As a backend engineer, you get a lot of control over how people are authenticated and their state is stored. Back in the day, it was common to see "stateful"…yjiq150 (56)in kr • 6 years agoAPI 서버 인증을 위한 JWT와 JWK 이해하기쿠키(cookie)를 이용한 세션기반의 인증의 경우 특정 웹서버에서 세션 상태(session state)를 유지해야 하기 때문에 stateless 하지않다. 서버 로직이 Stateless가 아닌 경우 더 많은 요청을 처리하기 위해 동일한 서버의 숫자를 늘리는 스케일 아웃(scale out)에 적합하지 않다. 또한 도메인이 다른 서버에 대해서는 해당 세션…vixmemon (50)in programming • 6 years agoMicroservices - Understanding and Implementing OAuth2 with JWTBefore we jump into How to implement Authentication & Authorization into any application, let's familiarise ourselves with some key concepts. Concept Definition…dirmich (25)in nuxt • 6 years agoNuxt.js Authenticate with JWT[Login] login process with passport --> req.user is generated automatically by passport create route for '/auth/token' for get jwt token with req.user create nuxtServerInit for…svenbbm (25)in nicht • 6 years agoAsp Net Core: Login wird nicht erkannt wegen JWT AuthentityProblem: der User wird beim Aufruf einer Webseite nicht erkannt, obwohl das Login erfolgreich war Betrifft: Asp.Net Core MVC Anwendung mit WebApi JWT JavaWebToken Ursache: Wenn man in einer…alfarisi94 (58)in utopian-io • 7 years agoConsuming JWT in Client side with VuejsRepository What Will I Learn? Consuming JWT API with endpoint Make Authorization in Axios Set-cookie with Vue-cookie Requirements Basic Javascript Es6 Install Vuejs…alfarisi94 (58)in utopian-io • 7 years agoConsuming JWT in Client side with JqueryRepository What Will I Learn? Consuming JWT API with endpoint Ajax Setup Header Make Authorization in headers Ajax Set Cookie for Authorization Requirements Basic…gabrum (55)in utopian-io • 7 years agoPython JSON Web Tokens : Implementation and TutorialLink to repository : Tutorial : Python JSON Web Tokens What is JWT? JWT or JSON Web Tokens is a compact, URL-safe means of representing claims between two parties. The claim between the…alfarisi94 (58)in utopian-io • 7 years agoConsuming JWT API with MongoDB and Node.js part-3# Verify Token, Decode Token , Route ProtectionWhat Will I Learn? Verify Token Decode token A protected route with token Checking the user who is logged in Requirements Write here a bullet list of the requirements for the…alfarisi94 (58)in utopian-io • 7 years agoConsuming JWT API with MongoDB and Node.js part-2# User Validation, Create token.What Will I Learn? Create a route for API login Make Validation Create Token Requirements Install node.js Install Express.js Install Postman Basic node.js, javascript…the-dragon (53)in utopian-io • 7 years agoIntroduction to JWTIn this post, I will try to explain what is JWT , what are its advantages and why you should be using it. JWT stands for JSON Web Tokens. Let me explain what each word means. JSON - JSON…puukallistaja (40)in dnabc • 7 years agosteemCreated with Sketch.Titleproject.list.lõpuks.saab.see.valmis. dnaBc DNAbC DNAbC kohtuid pole tarvis. kõik on chainis. :D paarikene peab otsustama, et kas nad on chainis või mitte data cleanup i.want.to.buy. this…alfarisi94 (58)in utopian-io • 7 years agoBuild Rest API in Slim Microframework part-2 (JWT)This tutorial I will discuss JSON (JSON Web Token). JWT brings a familiar concept to those of you who often play with APIs, our JWT system wraps data in tokens. so any action that requires…parkjp (32)in kr • 7 years agoJWT의 이해1. JWT의 이해 근래에 들어서 Claim 기반의 토큰 방식인 JWT (JSON Web Token)가 많이 사용되고 있다. 여기서 Claim은 사용자에 대한 프로퍼티나 속성을 말한다. 토큰 자체가 정보를 가지는 방식인데, JWT는 이 Claim을 JSON을 이용해서 정의한다. 다음은 Claim을 JSON으로 서술한…labomba (25)in d-tube • 7 years agoJWT - Json Web TokenToday I implemented an authentication server using jwt.io. A framework for creating a secure Json web token authentication. (jwt.io is not only available for nodejs but also for Asp.net, python…wikinalz (25)in java • 7 years agoJava EE - Security APII am dealing these days with writing a Java EE application providing a REST API. This REST API needs to be secured somehow. I am trying to use JWT. Interesting information