New: jwtAll contenthive-129948hive-196917krhive-150122hive-180932zzansteemphotographyhive-183959hive-166405hive-185836hive-144064hive-183397hive-188619hive-101145uncommonlabhive-145157hive-103599hive-184714hive-165987hive-180106lifebitcoinhive-138689hive-109690TrendingNewHotLikersrealmankwon (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 • 6 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 • 7 years agoAPI 서버 인증을 위한 JWT와 JWK 이해하기쿠키(cookie)를 이용한 세션기반의 인증의 경우 특정 웹서버에서 세션 상태(session state)를 유지해야 하기 때문에 stateless 하지않다. 서버 로직이 Stateless가 아닌 경우 더 많은 요청을 처리하기 위해 동일한 서버의 숫자를 늘리는 스케일 아웃(scale out)에 적합하지 않다. 또한 도메인이 다른 서버에 대해서는 해당 세션…vixmemon (51)in programming • 7 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 • 7 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 • 7 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…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…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…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