Bearer token in postman

后端 未结 4 2087
眼角桃花
眼角桃花 2021-02-06 21:40

I want to set a Bearer Token in postman

For some reason my Postman doesn\'t have the Bearer Token option in the Auth dropdown

4条回答
  •  鱼传尺愫
    2021-02-06 22:27

    You have a some options to add authorization type:

    1) Go headers tap and add => key: Authorization value:Bearer

    2) Create collection > select authorization

    3) click code and add headers

    headers:
    {
      'Postman-Token': '55..',
      'cache-control': 'no-cache',
      'Authorization': 'Bearer eyJhbG...'
    }
    

提交回复
热议问题