gpt4 book ai didi

JavaScript 从 URL 中获取 OAuth token ?

转载 作者:行者123 更新时间:2023-11-28 18:47:34 26 4
gpt4 key购买 nike

我正在使用隐式使用 OAuth 的 API。它重定向到 URL http://exmaple.com/#token=084758yhroufgbk48y .

我如何通过 JavaScript 获取它?谢谢

最佳答案

您可以使用 window.location.hash 获取 url 的哈希部分

要从 url 中获取 token ,请使用以下代码:

<script type="text/javascript">
hash = window.location.hash.substr(1); //url of the current page
arHash = hash.split('='); //this creates an array with key ([0] element) and value ([1] element)
hash_value = arHash[1]; //recieve value
</script>

关于JavaScript 从 URL 中获取 OAuth token ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10153931/

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