gpt4 book ai didi

java - 返回空 token

转载 作者:太空宇宙 更新时间:2023-11-04 11:02:41 26 4
gpt4 key购买 nike

我正在测试 API 端点。问题是当我检查 Swagger 时,它返回一个有效的 token ,但在我的测试中它返回 NULL。你能指出我哪里做错了吗?

 public static void createOrganization() {
Map<String, String> org = new HashMap();
org.put("directorName", "name");
org.put("email", "email@gmail.com");
org.put("website", "www.site.com");
org.put("phoneNumber", "000111");

String registrationToken = given().
contentType("application/json").
body(org).
when().
post("/v3/organizations").
then().
extract().path("registrationToken");

System.out.println("Token: "+ registrationToken);

输出: token :null

更新:也许我错误地使用了 extract() ,也许稍后有不同的解决方案来使用生成的值。因为对于 registerDevice() 我也得到了 NULL。

public static void registerDevice(){
String clientDeviceId =
given().
param("phoneNumber", "000111").
param("model", "samsung").
param("platform", "0").
param("push_token",SenimEnvironmentVars.testPushToken).
param("uuid", SenimEnvironmentVars.testUUID).
param("version", "7.1").
when().
post("/v3/user-devices").
then().
contentType("application/json").
extract().path("clientDeviceId");

System.out.println("Device ID: "+ clientDeviceId); //also prints NULL
}

还有其他方法可以生成 token 、设备 ID 等并在以后使用吗?

最佳答案

documentation

You can extract values from the response or return the response instance itself after you've done validating the response by using the extract method

因此尝试在 then 之后编写一些验证方法,例如 contentType(JSON)。

关于java - 返回空 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46723197/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com