Created
November 7, 2021 18:00
-
-
Save dalion619/c77fb32ffb8fac40ae395f728bb5cf77 to your computer and use it in GitHub Desktop.
Apple MapKit JS Access Token Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Header | |
{ | |
"typ": "JWT", | |
"alg": "HS512" | |
} | |
//Payload | |
{ | |
"iss": "mapsapi", | |
"tid": "Your TeamID", | |
"appid": "Your AppID", | |
"iti": false, | |
"irt": false, | |
"iat": 1636071753, | |
"exp": 1636073553 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment