Zapi API - 获取错误期望声明'qsh'具有值

时间:2017-05-03 10:26:45

标签: selenium jira jira-zephyr

我只是尝试从zapi api获取一般信息,但收到错误 期望声称'qsh'具有值'7f0d00c2c77e4af27f336c87906459429d1074bd6eaabb81249e10​​42d4b84374',但它的值为'1c9e9df281a969f497d78c7636abd8a20b33531a960e5bd92da0c725e9175de9'

API LINK:https://prod-api.zephyr4jiracloud.com/connect/public/rest/api/1.0/config/generalinformation

任何人都可以帮助我。

2 个答案:

答案 0 :(得分:1)

查询字符串参数必须按字母顺序排序,这将解决问题。
请参阅此链接以供参考:
https://developer.atlassian.com/cloud/bitbucket/query-string-hash/

答案 1 :(得分:0)

我绝对可以帮到你。您需要以正确的方式生成JWT令牌。

package com.thed.zephyr.cloud.rest.client.impl;

import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.ParseException;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;

import com.thed.zephyr.cloud.rest.ZFJCloudRestClient;
import com.thed.zephyr.cloud.rest.client.JwtGenerator;

public class JWTGenerator {

                public static void main(String[] args) throws URISyntaxException, IllegalStateException, IOException {
                                String zephyrBaseUrl = "https://prod-api.zephyr4jiracloud.com/connect";

                                String accessKey = "TYPE YOUR ACCESS KEY-GET IT FROM ZEPHYR";
                                String secretKey = "TYPE YOUR SECRET KEY-GET IT FROM ZEPHYR";
                                String userName = "TYPE YOUR USER - GET IT FROM ZEPHYR/JIRA";

                                ZFJCloudRestClient client = ZFJCloudRestClient.restBuilder(zephyrBaseUrl, accessKey, secretKey, userName).build();
                                JwtGenerator jwtGenerator = client.getJwtGenerator();

                                String createCycleUri = zephyrBaseUrl + "/public/rest/api/1.0/cycles/search?versionId=<TYPE YOUR VERSION ID HERE>&projectId=<TYPE YOUR PROJECT ID HERE>";

                                URI uri = new URI(createCycleUri);
                                int expirationInSec = 360;
                                String jwt = jwtGenerator.generateJWT("GET", uri, expirationInSec);
                                //String jwt = jwtGenerator.generateJWT("PUT", uri, expirationInSec);
                                //String jwt = jwtGenerator.generateJWT("POST", uri, expirationInSec);

                                System.out.println("FINAL API : " +uri.toString());
                                System.out.println("JWT Token : " +jwt);    

                }
 }

同样克隆此存储库:https://github.com/zephyrdeveloper/zfjcloud-rest-api,它将为您提供各自编码的所有方法。您可以构建Maven项目以直接导入这些依赖项。

*我也花了好几天才弄明白,所以请耐心等待,直到你产生正确的JWT为止。