-
I want to decode the global id to get the read id on client side.
|
Beta Was this translation helpful? Give feedback.
Answered by
hayes
Aug 7, 2022
Replies: 1 comment 5 replies
-
It's just base64 encoded, you can use |
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
hayes
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's just base64 encoded, you can use
const [type, id] = atob(rawID).split(':')
, on a phone, so this might not be exactly right, but hopefully that helps.