1

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

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

4

1 回答 1

2

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

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

<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>
于 2012-04-14T13:24:34.203 回答