我正在使用隐式使用OAuth的API。它会重定向到网址http://exmaple.com/#token=084758yhroufgbk48y。
如何通过JavaScript获取此信息? 感谢
答案 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>