JavaScript从URL获取OAuth令牌?

时间:2012-04-14 13:16:53

标签: javascript jquery html css

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

如何通过JavaScript获取此信息? 感谢

1 个答案:

答案 0 :(得分:1)

您可以使用window.location.hash

获取网址的哈希部分

要从网址抓取令牌,请使用以下代码:

<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>