- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的使用 Spotify API 的应用程序直到几天前都可以正常工作,但是,突然它告诉我我正在使用的 body 参数之一是错误的(与之前工作的相同)。我在 Postman 中测试了相同的参数,它工作得很好: Postman call
产生错误的主体参数:grant_type:授权代码
我收到的回复消息:
400 Bad Request
{
"error": "unsupported_grant_type",
"error_description": "grant_type must be client_credentials, authorization_code or refresh_token"
}
我放置了一个拦截器来检查我所做的调用是否确实具有正确的参数并且它确实显示正确。
我正在使用的代码:
休息通话
RestTemplate template = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.add("Authorization", CLIENT_ID_SECRET);
headers.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
MultiValueMap<String, String> map = new LinkedMultiValueMap<String, String>();
map.add("grant_type", "authorization_code"); //parameter generating the error
map.add("code", CODE);
map.add("redirect_uri", "https://www.getpostman.com/oauth2/callback");
HttpEntity<MultiValueMap<String, String>> requestEntity=
new HttpEntity<MultiValueMap<String, String>>(map, headers);
try{
AccessToken accessToken = template.postForObject("https://accounts.spotify.com/api/token/", requestEntity, AccessToken.class);
}
catch(RestClientResponseException e) {
System.out.println(e.getMessage());
System.out.println("Fail " + e.getResponseBodyAsString());
}
拦截器结果:
2019-08-29 23:37:44.660 INFO 18784 --- [nio-8080-exec-3] c.e.d.helper.LoggingRequestInterceptor : URI : https://accounts.spotify.com/api/token/
2019-08-29 23:37:44.664 INFO 18784 --- [nio-8080-exec-3] c.e.d.helper.LoggingRequestInterceptor : Method : POST
2019-08-29 23:37:44.665 INFO 18784 --- [nio-8080-exec-3] c.e.d.helper.LoggingRequestInterceptor : Headers : [Accept:"application/json, application/*+json", Content-Type:"application/x-www-form-urlencoded;charset=UTF-8", Authorization:"Basic M2JjZDNmMDVmYTBiNDVkOWE4MTY4ZmFmMjNhYj...DdiMmJjODg=", Content-Length:"433"]
2019-08-29 23:37:44.666 INFO 18784 --- [nio-8080-exec-3] c.e.d.helper.LoggingRequestInterceptor : Request body: grant_type=authorization_code&code=AQCTD5keYruiGP1ukaZYhDcC0tu9eLnvPnt3IYGlk7mfyaMIPEtdAiTCGbJOfpFA0v9-kgDJJysMAfTnx2e76AHbOZ2C55WVMtYvrR88t6_MDAkbLaPI_0NK7u8AqWhfj1zrkUz-3PBVwoPs6PduuqucSJporVEedpdcNGuQ24HjJdBxjQNEuBwGeTIllBkaWZSx6RzKoZcU-IPw5M44EbCwvHOtZiWL4U5nzER3NPCiZ9_r_w__wmFW1-HunE-32Q1lBzNz9vJVvsl3X_vumBHCNCAWdITzAmiUdU34RHRQAnyimKMPsnPYA-fd1Y_a47e2EXCJclgTHgm6-ODEXmZB&redirect_uri=https%3A%2F%2Fwww.getpostman.com%2Foauth2%2Fcallback
我不知道要测试什么,非常感谢任何帮助。
编辑:
我发现问题了,我向 https://accounts.spotify.com/api/token/ 提出请求删除最终的/有效 ( https://accounts.spotify.com/api/token )。最有可能的是它被更改为向其他端点发出请求,最后使用/作为 https://api.spotify.com/v1/me/仍然有效...
最佳答案
现在我已登录并在 Spotify
中创建了一个应用程序。请找到以下对我来说效果很好的来源。我在您的源代码中找不到任何错误。
@GetMapping("/spotify-response")
public void spotifyResponse(@RequestParam String code, HttpServletResponse httpServletResponse) {
String _clientId = "5eb8ce6ea7d04*******e870c48f";
String _clientSecret = "d45470deea224********3d8ab9";
RestTemplate restTemplate = new RestTemplate();
HttpHeaders httpHeaders = new HttpHeaders();
httpHeaders.setContentType(MediaType.APPLICATION_FORM_URLENCODED);
String usernamePassword = _clientId+":"+_clientSecret;
String basicToken = Base64.getEncoder().encodeToString(usernamePassword.getBytes());
httpHeaders.set("Authorization", "Basic "+basicToken);
MultiValueMap<String, String> requestBody = new LinkedMultiValueMap<>();
requestBody.add("grant_type", "authorization_code");
requestBody.add("code", code.trim());
requestBody.add("redirect_uri", "http://localhost:11001/api/spotify-response");
HttpEntity<MultiValueMap<String, String>> httpEntity = new HttpEntity<>(requestBody, httpHeaders);
try {
Object response = restTemplate.postForObject("https://accounts.spotify.com/api/token", httpEntity, Object.class);
Map<String, Object> map = (Map<String, Object>) response;
map.forEach((k, v) -> System.out.println(k+": "+v));
httpServletResponse.setStatus(302);
String accessToken = (String) map.get("access_token");
String patientId = (String) map.get("patient");
String url = "http://localhost:4200/login-success?accessToken="+accessToken+"&patientId="+patientId;
httpServletResponse.setHeader("Location", url); // redirect to success page
}
catch(HttpClientErrorException e) {
e.printStackTrace();
}
}
access_token: BQB9z1CeXwnS3MI0uQN-eAK9WRIW4r7U5k0H1RCxnRi5UlF04oYbcYgyoFH3wM-EQUydkKhXjhlJOposaoYSssQpcF9HgPHVCPiwNvzrHS5H8Cc64gcFlstAKxFDTMAfyUqfQ4UTBvdGfmQoORxoEhzsGCAcps-3fnoca_XdzLgjfJdPaQ
token_type: Bearer
expires_in: 3600
refresh_token: AQCKahUnfekyvGZ3RuO6h85YPSmhCqlRTklCw8r4RZzh8BesCu-4mVXKypsuTNV7AwE5tRJt8BXDn1eyXf797LvfVfN4Ju4KUc9AzYFKOiQPblUMip3_ImPOZDsF1InxIzjkAA
scope: user-read-private
关于java - Postman 和 RestTemplate 的 API 调用中的主体参数相同,但只有 Postman 有效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57718498/
我编写了以下代码来测试同步 RestTemplate 和 AsyncRestTemplate 的性能。我只是在 POSTMAN 上手动运行了几次。 我们只是将 10 个引用传递给 GET 调用,以便我
这种方式创建RestTemplate有什么区别 RestTemplate restTemplate = restTemplateBuilder .setConnectT
这个问题已经有答案了: IllegalArgumentException: Not enough variable values available with RestTemplate? (2 个回答
这是我的应用程序的主类 @SpringBootApplication (scanBasePackages = { "com.xyz.*" }) @EnableAsync @EnableAspectJA
我当前的代码: RestTemplate restTemplate = new RestTemplate(); restTemplate.getMessageConverters().add(new
我将开发一个简单的 Spring MVC Web 应用程序,它将使用 Heroku 上的远程 RESTful 服务。 我希望 MVC Web 应用程序根据 Controller 调用 REST 服务。
项目场景: Spring 的 RestTemplate 是一个健壮的、流行的基于 Java 的 Http客户端。 RestTemplate实现request param参数传送,如果如下所示,直接传一
我想通过 RestTemplate 发送请求。但是我的网址有大括号('{','}'),因此我有异常(exception):“没有足够的变量值可用于扩展......”。 我尝试通过 uri UriCom
有一个 RestFull 方法返回一个菜单对象列表 public ResponseEntity> getMenus() { .. } 但我不知道如何从 RestTemplate 中获取它们,从 Res
摘要: RestTemplate与REST资源交互的方法涵盖了HTTP请求方法,包括get, post, put, delete。 本文分享自华为云社区《Springboot RestTemplate
我有一个 springboot 休息服务 A 使用 restTemplate 调用休息服务 B。休息服务 A 的 restTemplate bean 创建如下,超时设置如下面的代码片段所示。 @Bea
我有一个 @Service有几种方法,每种方法使用不同的 web api。每个调用都应该有一个自定义的读取超时。 拥有一个 RestTemplate 实例并在每个方法中通过工厂更改超时是否是线程安全的
这是我的休息模板配置, @Bean @Qualifier("myRestService") public RestTemplate createRestTemplate(@Va
是否可以使用 RestTemplateBuilder 创建仅带有不记名 header 和 token 的 RestTemplate 实例? 我知道我可以使用 RestTemplate 交换并在 Htt
我正在尝试对请求正文执行 DELETE,但我不断收到 400(错误请求)错误。当我在 swagger/postman 中这样做时,它成功地删除了记录。但是从 Java 代码我不能这样做 外部 API
我需要创建 RestTemplate 请求,它将发送图像以通过 PHP 应用程序上传。 我的代码是: Resource resource = new FileSystemResource("/User
我正在使用 swagger codegen ( on this Zoura swagger ) 创建 Java/rest 模板客户端。我正在使用 swagger Gradle 插件: id "org.
我有Restful API,当找不到某个项目时会响应404错误,但是根据未找到该项目的原因(未知,不可用等),会有不同的消息,可以使用Spring MVC通过以下方式完成: response.send
我正在使用 Spring 中的 RestTemplate 来查询搜索服务。我在进行正确的序列化方面遇到了一些困难。如果我使用此方法,restTemplate 将返回一个列表。我不明白如何传递参数化类型
我们有这样的代码,它使用 OData 来指定资源(为简单起见,在此处使用公司代码进行硬编码): String uri = "[my_endpoint]/companyprofiles.read?$fi
我是一名优秀的程序员,十分优秀!