Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

15 righe
360 B

  1. <script>
  2. var qp = null;
  3. if(window.location.hash) {
  4. qp = location.hash.substring(1);
  5. }
  6. else {
  7. qp = location.search.substring(1);
  8. }
  9. qp = qp ? JSON.parse('{"' + qp.replace(/&/g, '","').replace(/=/g,'":"') + '"}',
  10. function(key, value) {
  11. return key===""?value:decodeURIComponent(value) }
  12. ):{}
  13. window.opener.onOAuthComplete(qp);
  14. window.close();
  15. </script>