The difference between making a jwt token and a specific token

,

What difference does it make if I write a dedicated token, for example, like the api of different and famous sites like Google, for example, Google says send a request to this address https://maps.googleapis.com/maps/api/js?key=YOUR_KEY&callback=myMap Here the key is not separated by two dots, but in jwt we have this structure Is jwt just a method like mvc or should it be run this way and why jwt is not used in different APIs, for example?

Hi @mohammadhadi

What you are describing is an API key.
An API key contains no information, and a JWT does.
JWTs are more powerful and flexible than API keys.

John

2 Likes

Thanks for helping on this one John!

However, when is jwt appropriate?
We can also manage information using the API key

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.