User Tools

Site Tools


Sidebar



en:objects:browser:external_params:set_google_default_client_secret

set_google_default_client_secret

set_google_default_client_secret($client_secret); - set DEFAULT GOOGLE CLIENT SECRET, available from version 6.0.39, for more information, see here.

the input Function accepts parameters:

  • $client_secret – DEFAULT GOOGLE CLIENT SECRET

    After testing, the function returns the result of its work to the script :
  • true – successfully set
  • false – failed to set

    PHP example:

    <?php $xhe_host = "127.0.0.1:7010";
     
    //connect the object to control the emulator, if not already connected
    if(!isset($path))
      $path = "../../../Templates/xweb_human_emulator.php";
    require($path);
     
    //Start
    echo "<hr> <font color = blue> browser->".basename(__FILE__)."</font> <hr>";
     
    //1 step
    $browser->set_user_agent("Mozilla/4.0(compatible; MSIE 6.0; Windows NT 6.0)");
    echo $browser->send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2");
    echo " n ===================================  n";
    sleep(3);
     
    //step 2
    echo $browser->send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2", "application/x-www-form-urlencoded", 1);
    echo " n ===================================  n";
    sleep(3);
     
    //step 3
    echo $browser->send_get_query("http://httpbin.org/get", "test1 = test & test2 = test2", "", 1, "X-Insta-Forwarded-For  r  n");
    echo " n ===================================  n";
    sleep(3);
     
    //end
    echo "<hr> <br>";
     
    //Quit
    $app->quit();
    ?>

    Python example:

    # Additional paths
    import sys
    sys.path.insert(0, '../../../Templates PY/')
     
    xhe_host = "127.0.0.1:7023"
    from xweb_human_emulator import *
     
    # Start
    echo("<hr> <font color = blue> browser.xxxxxxxxx </font> <hr>")
     
    # for the first step of the script, set the Google data
    if len(sys.argv) == 1:
         # 1
         echo("1.Let's set Google data:")
         echo(browser.set_google_api_key("123456789"), "")
         echo(browser.set_google_default_client_id("23456789"), "")
         echo(browser.set_google_default_client_secret("3456789"), "")
         sleep(5)
         # 2
         echo("2.Restart:")
         echo(app.restart(__ file __, "2 2"))
     
    # 3
    echo("3.Google data set.")
     
    # end
    echo("<hr> <br>")
     
    # Quit
    app.quit()

    C# example:

    #region using
     
    using System;
    using System.Diagnostics;
    using System.Collections.Generic;
    using System.Linq;
    using System.IO;
    using System.Text;
    using System.Threading;
     
    using XHE;
    using XHE.XHE_DOM;
    using XHE.XHE_System;
    using XHE.XHE_Window;
    using XHE.XHE_Web;
     
    #endregion
     
     class Program: XHEScript
     {
    static void Main(string [] args)
    {
    //init XHE
    server = "127.0.0.1:7023";
    InitXHE();
     
    //Start
    echo("<hr> <font color = blue> browser.send_get_query </font> <hr>");
     
               //for the first step of the script, set the Google data
                if(args.Length == 0)
                {
                   //1
                    echo("1.Let's set Google data:");
                    echo(browser.set_google_api_key("123456789") + "");
                    echo(browser.set_google_default_client_id("23456789") + "");
                    echo(browser.set_google_default_client_secret("3456789") + " n");
                    sleep(5);
                   //2
                    echo("2.Restart:");
                    echo(app.restart(debug.get_cur_script_path(), "2 2"));
                }
     
               //3
                echo("3.Google data set.");
     
    //end
    echo("<hr> <br>");
     
    app.quit();
    }
    }

    Java Script example:

    //connect the object to control the emulator, if not already connected
    xhe_host = "127.0.0.1:7023";
    echo = require("../../../Templates JS/xweb_human_emulator.js");
     
    //Start
    echo("<hr> <font color = blue> browser.send_get_query </font> <hr>");
     
    //for the first step of the script, set the Google data
    if(process.argv.length == 2)
    {
        //1
         echo("1.Let's set Google data:");
         echo(browser.set_google_api_key("123456789") + "");
         echo(browser.set_google_default_client_id("23456789") + "");
         echo(browser.set_google_default_client_secret("3456789") + " n");
         app.sleep(5)
        //2
         echo("2.Restart:");
         echo(app.restart(debug.get_cur_script_path(), "2 2"));
    }
     
    //3
    echo("3.Google data set.");
     
    //end
    echo("<hr> <br>");
     
    //Quit
    app.quit();
  • en/objects/browser/external_params/set_google_default_client_secret.txt · Last modified: 2026/08/05 22:32 (external edit)