我如何在我的React应用中包括授权标题?

发布于 2025-01-24 11:04:53 字数 186 浏览 0 评论 0原文

在Postman上,我可以通过添加标头来访问端点:

键:值(例如,我将插入假数据)

x-mash-auth-token:gdjsjaosh-hkds-dhjsk-hjjdbahsj

我正在构建一个React应用程序允许用户搜索端点,如何将此标头包含在我的代码中以授予UI上的用户访问?

On postman, I can access endpoints by adding the headers:

Key: Value ( I will insert fake figures for example)

x-mash-auth-token: gdjsjaosh-hkds-dhjsk-hjjdbahsj

I am building a react app that allows user to search endpoints, how can I include this header in my code to grant user access on UI?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

魔法少女 2025-01-31 11:04:53
            axios({
                url: "API URL",
                method: "GET",
                data: {name: "abc"},
                contentType: 'application/json',
                headers: {
                    "Access-Control-Allow-Origin": "*",
                    'Accept': 'application/json',
                    'Content-Type': 'application/json',
                    'Pragma': 'no-cache',
                    'Authorization': 'Bearer gdjsjaosh-hkds-dhjsk-hjjdbahsj',
                    'Access-Control-Expose-Headers': "jwt_token"
                },
                responseType: 'json'
            })
            .then(function (response) {
                successCallback(response);
            })
            .catch(function (error) {
                errorCallback(error);
            })
    
            axios({
                url: "API URL",
                method: "GET",
                data: {name: "abc"},
                contentType: 'application/json',
                headers: {
                    "Access-Control-Allow-Origin": "*",
                    'Accept': 'application/json',
                    'Content-Type': 'application/json',
                    'Pragma': 'no-cache',
                    'Authorization': 'Bearer gdjsjaosh-hkds-dhjsk-hjjdbahsj',
                    'Access-Control-Expose-Headers': "jwt_token"
                },
                responseType: 'json'
            })
            .then(function (response) {
                successCallback(response);
            })
            .catch(function (error) {
                errorCallback(error);
            })
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文