Library

Video Player is loading.
 
Current Time 6:52
Duration 24:00
Loaded: 0.00%
 
x1.00


Back

Games & Quizzes

Training Mode - Typing
Fill the gaps to the Lyric - Best method
Training Mode - Picking
Pick the correct word to fill in the gap
Fill In The Blank
Find the missing words in a sentence Requires 5 vocabulary annotations
Vocabulary Match
Match the words to the definitions Requires 10 vocabulary annotations

You may need to watch a part of the video to unlock quizzes

Don't forget to Sign In to save your points

Challenge Accomplished

PERFECT HITS +NaN
HITS +NaN
LONGEST STREAK +NaN
TOTAL +
- //

We couldn't find definitions for the word you were looking for.
Or maybe the current language is not supported

  • 00:04

    I'm sure you have used JWT many times but have you ever think about what it is

  • 00:11

    even though you have not used it maybe you have heard about JWT and in this

  • 00:18

    episode we are going to see what is JWT what it can do how it can be created

  • 00:24

    what the structure of JWT and all these things that means the JWT explained so

  • 00:30

    with that I'm your host Sarthak and this is a channel where I talk about web

  • 00:34

    development related things like Laravel Vuejs react angular and much more

  • 00:39

    exciting thing so if you are new to this channel don't for word subscribe and

  • 00:43

    like Bitfumes on Facebook Twitter and Instagram so let's start this video to

  • 00:48

    know more about JWT but first thing first what the JSON web token JWT is

  • 00:56

    it's an open standard open a standard this means anyone can use it and why it

  • 01:02

    is used it is used to securely transfer information between any two bodies and

  • 01:08

    two bodies that means any two users any two server any two bodies okay and why

  • 01:15

    it is used because it is digitally signed this means information is

  • 01:19

    verified and trusted there is no alteration of data in between the

  • 01:26

    transfer so that's why it is displace find and then comes the most important

  • 01:31

    part which is compact it is so compact that you can just send it via URL as

  • 01:37

    get requests then you can send this as a post request as a HTTP header and in

  • 01:44

    that way it's supremely fast that fast transmission makes JWT more usable and

  • 01:52

    that's why it is easily used it is self contained and what that self contained

  • 01:58

    means it means if that token that means the JWT token is self contained the

  • 02:04

    information about the user and this avoid querying the database more than

  • 02:10

    once suppose you have logged in or user your user just logged in one time

  • 02:16

    you verify the information like username password then you just provide a token

  • 02:20

    so every other time the user going to request something from your website you

  • 02:26

    don't have to log in you just have to pass that token and then JWT system will

  • 02:32

    just verify that token and if that passes give the information or respond

  • 02:38

    to that request that's the case of self contained a single token is having

  • 02:45

    everything in it but why JWT is useful JWT is useful in case of authentication

  • 02:52

    as I have just explained you it is used for exchanging information between any

  • 02:58

    two bodies as we have discussed okay but what a JSON web token structure will

  • 03:04

    look like you can see we have three parts the a part the B part and the C

  • 03:09

    parts the a part is actually the header header part then we have concatenated

  • 03:16

    the B part which is called payload and again the last one is the signature

  • 03:21

    let's first understand header and then we will proceed

  • 03:26

    so what header includes header will look like this it's a JSON object simple and

  • 03:33

    it includes two fields and one is a LG simply algorithm algorithm like H Mac

  • 03:41

    sha-256 RSA this means this a LG will tell the JWT that in which algorithm it

  • 03:50

    is encoded then comes Eve IP that means the type type of web token which is

  • 03:57

    simply JWT this jason and this header jason is then

  • 04:02

    base64 encoded to form the first part we have seen let's see this the first part

  • 04:09

    the a part we have here and this a part then encoded in the form of base64 to

  • 04:16

    form the first part the a part okay then comes the payload payload again have a

  • 04:21

    structure itself JSON object simply and it contains the claims

  • 04:26

    and what is claims? claims are the user detail or additional metadata like

  • 04:31

    expiry date of the token is that admin or not other things then payload itself

  • 04:38

    then base64 encoded to form the second part the be part of the JWT then comes

  • 04:46

    the most important part which is signature five year using signature we

  • 04:50

    told the JWT that in the header yeah we are going to use this kind of token and

  • 04:56

    you have to encode this with this time of algorithm then we have told the GWT

  • 05:03

    that these are the fields I am going to pass these are the things which you

  • 05:08

    self-contained but how we will ensure that this data

  • 05:13

    will not change while transferring to one body to other body so here comes the

  • 05:20

    signature signature uses base64 header then concatenate with base64 version of

  • 05:28

    payload and all these things then HMac sha-256 encoded this contain base64

  • 05:38

    header base64 payload with a secret and this important thing because if someone

  • 05:45

    even changed the payload he don't know about the secret and then this signature

  • 05:51

    will not exactly the same with the original payload and if you are confused

  • 05:56

    I will show you this in just a moment this provide the signature provide more

  • 06:01

    security so after combining all these three

  • 06:05

    things we get our JWT combined with a dot the first one the base64 version of

  • 06:13

    header then the second one base64 version of payload then the third one

  • 06:19

    base64 of header dot base64 of payload then secret all these things ashmac

  • 06:27

    sha-256 encoded to form the signature this last one so this is actually the

  • 06:34

    JWT and let's explain this you have a browser and you have a

  • 06:40

    then from the browser you send a post request to the server with the

  • 06:46

    credential like the username and password then server catch that verified

  • 06:51

    that authenticate that and if everything good JWT

  • 06:55

    is generated with a secret and then that passed back to the browser if we get a

  • 07:04

    successful JWT then we will send the JWT on the header on the post request on URL

  • 07:13

    to access some protected resources on our website then on the server first we

  • 07:21

    check about the JWT if JWT signature matches with the signature we have

  • 07:28

    defined then it is you the information that everything is good and you can

  • 07:35

    access this protected field and respond to the client if signature doesn't

  • 07:42

    matter it will just say an authenticated so these are the things you have to

  • 07:49

    learn about JWT but let's go to this JWT.io website

  • 07:54

    and let's see what will going to happen if we change something on this website

  • 08:00

    so we have this JWT all these things this is the header part the payload and

  • 08:07

    the secret but what if I alter this if I remove this mind you can see it says

  • 08:15

    invalid signature that's good because we have changed and coded part but what if

  • 08:20

    in between the transmission someone changed the payload and then he put that

  • 08:26

    base encoded part of the new payload here so let's just copy this one from

  • 08:32

    here go to new tab and I will say base64 encode online go here on the encode part

  • 08:41

    I will paste that and instead of true I will say false

  • 08:47

    and let's encode it copy this encode part base64 and

  • 08:53

    now let's see here signature is verified because everything is good this

  • 08:58

    signature is created with admin as a true but if I change this payload base64

  • 09:08

    it become false but now it says invalid because signature is created with admin

  • 09:16

    as a true and new payload has admin as a false this means signature is not

  • 09:24

    verified with the payload so now let's play with secret we have done changes in

  • 09:29

    the payload so if I'd say a true signature verified but what I gave wrong

  • 09:37

    secret so if I remove T you can see even though payload is correct

  • 09:43

    the signature doesn't match --is this means this time I have changed the

  • 09:48

    signature so if I give single till at last you can see signature verifies and

  • 09:55

    this is the cool part of using JWT and in that way JWT simply works so let me

  • 10:04

    know what you think about JWT whether you are using it whether you are not

  • 10:10

    using it whatever thing just comment below on this video so that everyone's

  • 10:14

    so so that we have a healthy discussion on the JWT if you have any doubt feel

  • 10:21

    free to message me commit me on Facebook Twitter and Instagram you can email me

  • 10:27

    and don't forget to subscribe like bitfumes on Facebook Twitter and Instagram

  • 10:32

    bye bye

All

The example sentences of PAYLOAD in videos (15 in total of 126)

the determiner caterpillar proper noun, singular c proper noun, singular 18 cardinal number engine noun, singular or mass of preposition or subordinating conjunction these determiner 666 cardinal number trucks noun, plural produces verb, 3rd person singular present 700 cardinal number horsepower noun, singular or mass and coordinating conjunction has verb, 3rd person singular present a determiner payload noun, singular or mass
form noun, singular or mass the determiner first adjective part noun, singular or mass the determiner a determiner part noun, singular or mass okay adjective then adverb comes verb, 3rd person singular present the determiner payload noun, singular or mass payload noun, singular or mass again adverb have verb, non-3rd person singular present a determiner
and coordinating conjunction conceal adjective its possessive pronoun true adjective structure noun, singular or mass , but coordinating conjunction juno proper noun, singular was verb, past tense equipped verb, past participle with preposition or subordinating conjunction a determiner powerful adjective payload noun, singular or mass of preposition or subordinating conjunction scientific adjective
c proper noun, singular and coordinating conjunction ground noun, singular or mass platforms noun, plural the determiner whole adjective kit noun, singular or mass including verb, gerund or present participle the determiner payload noun, singular or mass launcher noun, singular or mass and coordinating conjunction transport noun, singular or mass bag noun, singular or mass weighs verb, 3rd person singular present
maximum proper noun, singular payload proper noun, singular and coordinating conjunction maximum proper noun, singular read proper noun, singular request proper noun, singular are verb, non-3rd person singular present very adverb important adjective and coordinating conjunction you personal pronoun will modal see verb, base form why wh-adverb later adverb
psyche proper noun, singular will modal carry verb, base form the determiner deep proper noun, singular space proper noun, singular optical proper noun, singular communication proper noun, singular payload noun, singular or mass to to test verb, base form laser noun, singular or mass communications noun, plural at preposition or subordinating conjunction this determiner
a determiner payload verb, base form it personal pronoun was verb, past tense calculated verb, past participle to to require verb, base form a determiner 500 cardinal number megawatt noun, singular or mass reactor noun, singular or mass but coordinating conjunction to to test verb, base form its possessive pronoun
after preposition or subordinating conjunction all determiner , a determiner reentry noun, singular or mass comes verb, 3rd person singular present after preposition or subordinating conjunction the determiner payload noun, singular or mass separation noun, singular or mass so preposition or subordinating conjunction it personal pronoun doesn proper noun, singular t proper noun, singular have verb, non-3rd person singular present to to be verb, base form taken verb, past participle into preposition or subordinating conjunction account noun, singular or mass for preposition or subordinating conjunction a determiner payload noun, singular or mass delivery noun, singular or mass .
i personal pronoun m proper noun, singular working verb, gerund or present participle on preposition or subordinating conjunction the determiner reusable proper noun, singular mars proper noun, singular lander verb, non-3rd person singular present that wh-determiner takes verb, 3rd person singular present crew proper noun, singular or coordinating conjunction payload proper noun, singular back adverb and coordinating conjunction forth adverb
fast adverb and coordinating conjunction extremely adverb agile noun, singular or mass the determiner light noun, singular or mass fighter noun, singular or mass does verb, 3rd person singular present have verb, past participle some determiner shortcomings noun, plural in preposition or subordinating conjunction range noun, singular or mass and coordinating conjunction payload noun, singular or mass
so adverb that wh-determiner 's verb, 3rd person singular present folks noun, plural hype verb, non-3rd person singular present and coordinating conjunction the determiner second adjective thing noun, singular or mass is verb, 3rd person singular present a determiner payload noun, singular or mass payload noun, singular or mass is verb, 3rd person singular present okay adjective the determiner increment noun, singular or mass by preposition or subordinating conjunction this determiner value noun, singular or mass
- so adverb now adverb we personal pronoun have verb, non-3rd person singular present to to get verb, base form in preposition or subordinating conjunction our possessive pronoun cars noun, plural and coordinating conjunction go verb, base form chasing verb, gerund or present participle the determiner payload noun, singular or mass .
the determiner entire adjective version noun, singular or mass 1.0 cardinal number , including verb, gerund or present participle the determiner 1st adjective stage noun, singular or mass , 2nd adjective stage noun, singular or mass and coordinating conjunction payload noun, singular or mass , was verb, past tense almost adverb exactly adverb
we personal pronoun saw verb, past tense that preposition or subordinating conjunction it personal pronoun took verb, past tense several adjective minutes noun, plural to to copy verb, base form a determiner mixed verb, past participle payload noun, singular or mass totalling verb, gerund or present participle 6 cardinal number gigabytes noun, plural .
you're proper noun, singular going verb, gerund or present participle in preposition or subordinating conjunction and coordinating conjunction you're proper noun, singular loading noun, singular or mass up preposition or subordinating conjunction certain adjective things noun, plural back adverb into preposition or subordinating conjunction the determiner payload noun, singular or mass bay noun, singular or mass .

Use "payload" in a sentence | "payload" example sentences

How to use "payload" in a sentence?

  • When the Grateful Dead needed a quality sound system to deliver our sonic payload, I learned electronics and speaker design.
    -Mickey Hart-
  • Government jobs are not an addition to the country's payroll; they are an increase in the nation's payload.
    -Ilana Mercer-
  • Overall, going to the moon is a daunting project because of the amount of fuel it takes to send a payload from Earth.
    -Walter Smith-
  • In 1983, NASA invited Canada to fly three payload specialists, in part because we had contributed the robotic arm that is used on the shuttle.
    -Marc Garneau-

Definition and meaning of PAYLOAD

What does "payload mean?"

/ˈpāˌlōd/

noun
Part of guided missile containing the explosive.