如何在angular-oauth2-odic中将标题内容类型设置为application / json?

问题描述 投票:0回答:1

我从application/json方法将Content-Type标题设置为fetchTokenUsingPasswordFlow,但它将作为application/x-www-form-urlencoded。有没有办法将标题内容类型设置为application/json

根据源代码,Content-Type标头已被硬编码为application/x-www-form-urlencoded

我正在为后端使用spring boot rest服务,它不允许使用application/x-www-form-urlencoded作为Content-Type。请在下面找到Angular 6代码示例供您参考:

import { Component, OnInit, Input } from '@angular/core';
import { Router, ActivatedRoute } from '@angular/router';
import { Usermodel } from '../models/usermodel';
import { OAuthService } from 'angular-oauth2-oidc';
import { HttpHeaders } from '@angular/common/http';

@component({
  selector: 'app-login',
  templateUrl: './login.component.html',
  styleUrls: ['./login.component.css']
})
export class LoginComponent implements OnInit {
  @input() message: any;
  @input() apiUrl: any;
  @input() params: any;
  currentUser: Usermodel;
  model: any = {};
  loading = false;
  returnUrl: string;
  headers: HttpHeaders;

  constructor(private router: Router,
    private route: ActivatedRoute,
    private oauthService: OAuthService,
  ) {
    oauthService.tokenEndpoint = "http://localhost:7890/api/login";
    oauthService.requireHttps = false;
    this.oauthService.setStorage(localStorage);
    this.headers = new HttpHeaders().set('Content-Type', 'application/json');
    console.log('oauthtoken', this.oauthService.getAccessToken());
  }

  ngOnInit() {
    this.returnUrl = this.route.snapshot.queryParams['returnUrl'] || '/';
  }

  public login() {
    this.loading = true;
    this.apiUrl = 'login'
    console.log("Headers::->" + this.headers)
    this.oauthService.fetchTokenUsingPasswordFlow(this.model.userName, this.model.password, this.headers).then((resp) => {
      console.log('resp', resp);
    });
  }
}
angular6 content-type angular-oauth2-oidc
1个回答
0
投票

我刚才看到一个similar issue on the angular-oauth2-oidc repo,我会在这里重复我的回答作为答案,所以人们很容易找到。

图书馆硬编码application/x-www-form-urlencoded,我认为可能是正确的:RFC 6749 seems to prescribe this

4.3.2。访问令牌请求

客户端通过使用“application / x-www-form-urlencoded”格式添加以下参数向令牌端点发出请求...

我有点惊讶你的Spring启动包不支持更改资源所有者密码流的令牌请求端点的可能内容类型,你可以尝试仔细检查吗?

或者,您可以使用适当的spring-boot软件包提出问题吗?

我看到的唯一最后一个选项(除了不使用该库,对于该流程来说非常可能)此时是为了自定义构建而自行分叉库并更改内部。

© www.soinside.com 2019 - 2024. All rights reserved.