提取令牌并在另一个请求中进行参数化

时间:2019-02-18 03:52:11

标签: karate

我从发布请求中获得JSON响应

{
    "access_token": ".u9H5YgCCoMJHTW6SgVMxJe2aUEGHpMBbUf1456Gkj28",
    "token_type": "bearer",
    "expires_in": "4319",
    "scope": "READ "
}

我想获取此访问令牌并将其传递给另一个GET API请求,如下所示。

And header Authorization = token

我做了什么? 首次发布api

* def response.access_token = token 
Given url ''
And header Authorization = token 

这不起作用

1 个答案:

答案 0 :(得分:1)

我认为您对语法感到困惑,以下两种方法都可以使用:

And header Authorization = response.access_token

或:

* def token = response.access_token
And header Authorization = token