gpt4 book ai didi

javascript - jQuery 提取 token 并将其传递给 php 位置 header

转载 作者:行者123 更新时间:2023-11-28 03:15:19 24 4
gpt4 key购买 nike

我想使用 jQuery 从 API 中提取 token ,然后将其传递给 URL 中的 php 位置 header 参数。

示例:

<script>
$.getJSON('https://example.com/APIENDPOINT', function(data) {
alert(data.access_token)
});
</script>

<?php
header('Location: https://example.com/auth/?access_token=${data.access_token}');
?>

我不确定我做错了什么,如果有人能给我任何提示,我会很高兴。

最佳答案

也许是这样的:

$.getJSON('https://example.com/APIENDPOINT', function(data) {
window.location.href = 'https://example.com/auth/?access_token=' + data.access_token;
});

如果需要 301 重定向,则仅在服务器端运行(php)

<?php
$json = file_get_contents('https://example.com/APIENDPOINT');
$obj = json_decode($json);
$token = $obj->access_token;
$url = 'https://example.com/auth/?access_token=' . $token ;
header("Location: ".$url, true, 301);
exit();
?>

关于javascript - jQuery 提取 token 并将其传递给 php 位置 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59695834/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com