以编程方式获取AJAX请求的Authorization标头

时间:2016-03-30 13:43:49

标签: javascript ajax curl phantomjs casperjs

我试图弄清楚我的移动数据使用情况&我注意到有https://secure.example.com/myaccountmgr/fapi/usage/data/...查询的简单API,但它们带有Authorization: 0a60bd4e0blahlblahhash以便查询它们。

我在登录时复制了curl命令,但它确实相当复杂redirection dance我不知道如何计算curl,因为它是Javascript。

人们如何做到这一点?在进一步调试之后,我注意到它稍后通过Angular向https://secure.example.com/myaccountmgr/fapi/login/esso发出一个AJAX请求,返回utoken,在后续的AJAX请求中使用Authorization作为<?php $file1 = 'a:b markus:lanz peter:heinrichs lach:schnell'; $file2 = ' lanz:hallo heinrichs:gruss b:c test:notest schnell:langsam'; $array = explode(":", $file1); for($i=0; $i < count($array); $i++) { $pattern = "/^.*\b". $array[$i] ."\b.*$/m"; $matches = array(); preg_match($pattern, $file2, $matches); var_dump($matches); echo $array[$i] . ":"; } ?> 值。所以我要问的是,一旦我登录,我该如何查看此响应,以便我可以获取令牌?

0 个答案:

没有答案