我对rest api具有OAuth2身份验证,我正在尝试通过使用以下代码来获取令牌。 以下是问题
帖子中的值是什么?
什么是重定向uri(在我的测试中,我没有发送令牌的重定向uri)
应该授予什么和范围(读/写是我的范围)?
响应响应=
given().urlEncodingEnabled(false).auth().preemptive().basic("xxx", "yyy")
.formParam("grant_type", "implict")
.formParam("username", "abcd")
.formParam("password", "xyz")
.formParam("scope", "read").when()
.post("????");
当我执行上述代码时,报头中的响应为
HTTP/1.1 302
Cache-Control=no-cache, no-store, max-age=0, must-revalidate
Pragma=no-cache
Expires=0
Location=url?error
Server=nginx/1.13.5
Set-Cookie=SESSION=<sessionid>; Path=/; Secure; HttpOnly
Request-Context=appId=
X-Content-Type-Options=nosniff
X-XSS-Protection=1; mode=block
Strict-Transport-Security=max-age=; includeSubDomains;
Date=Thu, 25 Oct 2018 19:52:26 GMT
Content-Length=0