set_google_default_client_id

set_google_default_client_id($client_id); - set DEFAULT GOOGLE CLIENT ID, available from version 6.0.39, for more information, see here.

the input Function accepts parameters:

  • $client_id – DEFAULT GOOGLE CLIENT ID

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

    PHP example: browser->".basename(__FILE__)."
    "; //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 "

    "; //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("
    browser.xxxxxxxxx
    ") # 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("

    ") # 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("
    browser.send_get_query
    "); //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("

    "); 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("
    browser.send_get_query
    "); //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("

    "); //Quit app.quit();