gpt4 book ai didi

java - 使用 OKHttp 访问 Graph Microsoft 上的用户个人资料返回特殊字符

转载 作者:行者123 更新时间:2023-11-30 01:45:22 25 4
gpt4 key购买 nike

我正在尝试从 graph.microsoft 检索我的用户个人资料,如下所示 here 。我正在使用 Java 库 OKHttp 来实现此目的,但是服务器在响应中返回特殊字符。我检查了标题,确实包含了“Accept-Encoding:gzip”。然而问题并没有得到解决。请参阅下面的代码;

Java 代码

Request userProfileRequest = new Request.Builder()
.url("https://graph.microsoft.com/v1.0/me")
.get()
.addHeader("Authorization", "Bearer "+accessTkn)
.addHeader("Accept", "*/*")
.addHeader("Cache-Control", "no-cache")
.addHeader("Content-Type", "application/json;odata.metadata=minimal;odata.streaming=true;IEEE754Compatible=false;charset=utf-8")
.addHeader("Accept-Encoding", "gzip")
.addHeader("Connection", "keep-alive")
.addHeader("cache-control", "no-cache")
.build();

Response userProfileResponse = client2.newCall(userProfileRequest).execute();
System.out.println("Authorization is " +userProfileRequest.header("Authorization"));
System.out.println(userProfileResponse.body().string());

控制台输出 enter image description here

最佳答案

OkHttp 为您进行透明压缩。但是,通过显式指定 "Accept-Encoding: gzip"您表明您想要 gzip 压缩并将自行处理。

按照您在答案中所做的那样删除除授权之外的所有内容是正确的解决方案。

关于java - 使用 OKHttp 访问 Graph Microsoft 上的用户个人资料返回特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58227377/

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