B4A Code Snippet Get the expiration time from firebase JWT token - Erel    Feb 14, 2023   (7 reactions) Private Sub GetExpiryTime(JWTToken As String) As Long Dim parts() As String = Regex.Split("\.", JWTToken) Dim b() As Byte = UrlSafeDecodeBase64(parts(1)) Dim s As String = BytesToString(b, 0, b.Length, "utf8") Dim map As Map = s.As(JSON).ToMap Log(map.As(JSON).ToString) If map.ContainsKey("exp") Then Dim expire As Long = map.Get("... B4A Question how to use JWT token authentication in Okhttputils - junaidahmed    Jun 14, 2023 I am using okhttputil2 library to get data from server via api.I would like to know how to use JWT token authentication in Okhttputils... B4J Code Snippet [web]JSON Web Token (auth0/java-jwt) - aeric    Aug 5, 2022   (16 reactions) You can use this class to generate JSON Web Token (JWT) for use in Web API B4J Server.
This code...-annotations-2.13.3
Sub Process_Globals
Dim jwt1 As JSONWebToken
Dim jwt2 As JSONWebToken... B4A Question [SOLVED] REST API authentication with JWT - josejad    Apr 18, 2019 tested the login function, and I get the JWT token rigth: POST /api/ action=login&username=admin&password=master I get the response { "JWT"....GetString) Dim root As Map = parser.NextObject Dim JWT As String = root.Get("JWT") Pass = JWT Log("Password: " & Pass) End If j.Release End Sub Now, I think I have to pass the JWT token before getting data again. Default API JWT... B4A Question Firebase TokenId TimedOut - Erel (first post)    Feb 14, 2023 You can parse the JWT token with this code: https://www.b4x.com/android/forum/threads/get-the-expiration-time-from-firebase-jwt-token.146137/... Share My Creation [B4J] [MySQL] [API] Server (Key + Token) and [B4X] User Login Apps - aeric    Aug 16, 2024   (39 reactions) user access token to authorize user to consume the API.
SQL.zip - SQL script to create necessary... B4A Question JWT for B4A - aeric (first post)    Aug 19, 2023 There is a code to check the JWT token expiry inside the B4J-SendTool
https://www.b4x.com/android/forum/threads/firebasenotifications-push-messages-firebase-cloud-messaging-fcm.67716/
Maybe it works.... B4J Tutorial Pocketbase CRUD REST API & SSE with PostMan and then HttpUtils - Mashiane (first post)    Nov 29, 2022   (4 reactions) Nice, user authorization that gives you a JWT token.. 136581... Share My Creation [Web] Shao - micro blog API server and web client - aeric    Nov 11, 2024   (16 reactions) Test: Build-in API documentation testing page Store tokens and Client ID/Secret inside browser Bonus libraries: Firebase Sending Tool (FCMTool) Slugify Updated libraries: JsonWebToken 2.20 Velocity 3.00 ImageScaler 1.01 JSON Web Token (JWT) is used to generate access token and refresh token. For... server) JSON Web Token for generating access and refresh tokens Cookie (httponly) to store refresh token (cannot be read/write by JavaScript) LocalStorage to store access token No SQL injection attack... B4J Question [SOLVED] - Javaobject Problem - JWT with RSA256 - hatzisn    Sep 30, 2022   (1 reaction) Good morning everyone, I am trying to mess with @aeric 's JWT (as seen in the following post) to create JWT with RSA256. I am stack in Java
https://www.b4x.com/android/forum/threads/json-web-token-auth0-java-jwt.142125/#content
Starting I created an RSA256 pair of keys private and public..., privateKey);
' String token = JWT.create()
' .withIssuer("auth0"... Page: 1   2   3   4   5   6   7   |