1

我目前正在尝试从后端获取一些音频资源,每个请求都需要 JWT,并且我无法禁用安全性,大多数音频文件来自私人会议。

问题是我找不到在视频请求中设置我需要的标题字段的位置......

我已经使用 $httpProvider 和 angular-jwt 在所有路由上设置了标题。

angular.module('bnApp').config(['$compileProvider', '$httpProvider', 'jwtInterceptorProvider', 
function ($compileProvider, $httpProvider, jwtInterceptorProvider) {
    $compileProvider.debugInfoEnabled(true);

    jwtInterceptorProvider.tokenGetter = [function() {
        return localStorage.getItem('token');
    }];
    $httpProvider.interceptors.push('jwtInterceptor');
}]);

但这似乎不适用于音频文件。

希望这是足够的信息...

谢谢你

4

0 回答 0