图片.jsi 307 B

12345678910111213
  1. let url_tmp = vipUrl.split('@');
  2. let url = url_tmp[0];
  3. let headers = {};
  4. url_tmp.slice(1).forEach(function (it){
  5. headers[it.split('=')[0]] = it.split('=')[1];
  6. });
  7. let html = request(vipUrl,{headers:headers});
  8. print(html.length);
  9. try {
  10. realUrl = image(html);
  11. }catch (e) {
  12. print('发生了错误:'+e);
  13. }