1

我正在创建一个 Rust Web 应用程序。我正在尝试发出 API 请求并将请求的结果作为响应传递给 Web 视图。有 main.rs 、 route.rs 和 common.rs 文件。基本上 main.rs 文件调用相关路由,然后路由将调用该函数。问题是,现在我构建它时没有错误。但是,当我尝试使用网络浏览器运行它时,它在浏览器中给了我这个错误。

This page isn’t working
127.0.0.1 didn’t send any data.
ERR_EMPTY_RESPONSE

这也显示在终端中。

thread 'actix-rt:worker:2' panicked at 'assertion failed: !headers.contains_key(CONTENT_TYPE)', src\search\routes\common.rs:15:9

我想知道的是,我是否以正确的方式发送标头?还是我做错了什么?我怎样才能解决这个问题?

路由.rs

use crate::search::User;
use actix_web::{get, post, put, delete, web, HttpResponse, Responder};
use serde_json::json;
extern crate reqwest;
extern crate serde;
mod bfm;
mod common;
use actix_web::Result;
use actix_web::error;
use actix_web::http::{StatusCode};

#[get("/token")]
async fn get_token() -> Result<String> {

    let set_token = common::authenticate(); 
    return set_token.await
    .map_err(|_err| error::InternalError::new(
    std::io::Error::new(std::io::ErrorKind::Other, "failed to get token"), 
         StatusCode::INTERNAL_SERVER_ERROR
    ).into());
}

pub fn init_routes(cfg: &mut web::ServiceConfig) {
    cfg.service(get_token);
}

common.rs

extern crate reqwest;
use reqwest::header::HeaderMap;
use reqwest::header::AUTHORIZATION;
use reqwest::header::CONTENT_TYPE;

pub async fn authenticate() -> Result<String, reqwest::Error> {

    fn construct_headers() -> HeaderMap {
        let mut headers = HeaderMap::new();

        headers.insert(AUTHORIZATION, "Basic bghtyujhu==".parse().unwrap());
        headers.insert(CONTENT_TYPE, "application/x-www-form-urlencoded".parse().unwrap());

        assert!(headers.contains_key(AUTHORIZATION));
        assert!(!headers.contains_key(CONTENT_TYPE));

        headers
    }

    let client = reqwest::Client::new();

    let reszr = client.post("https://api.test.com/auth/token")
    .headers(construct_headers())
    .body("grant_type=client_credentials")
        .send()
        .await?
        .text()
        .await;

        return reszr;
}
4

0 回答 0