• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

PHP getAccessToken函数代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了PHP中getAccessToken函数的典型用法代码示例。如果您正苦于以下问题:PHP getAccessToken函数的具体用法?PHP getAccessToken怎么用?PHP getAccessToken使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。



在下文中一共展示了getAccessToken函数的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。

示例1: getNumAudience

function getNumAudience($code, $gender, $accessToken)
{
    global $aux_num_intentos, $num_intentos, $data_acount_facebook, $data_acount_facebook_index;
    $numAudience = "";
    $ban = 0;
    while ($ban == 0) {
        try {
            $datos = file_get_contents('https://graph.facebook.com/act_' . $data_acount_facebook[$data_acount_facebook_index]['accountId'] . '/reachestimate?endpoint=/act_' . $data_acount_facebook[$data_acount_facebook_index]['accountId'] . '/reachestimate&accountId=' . $data_acount_facebook[$data_acount_facebook_index]['accountId'] . '&locale=es_LA&targeting_spec={"genders":[' . $gender . '],"age_max":65,"age_min":13,"broad_age":true,"regions":[],"countries":["' . $code . '"],"cities":[],"zips":[],"radius":0,"keywords":[],"connections":[],"excluded_connections":[],"friends_of_connections":[],"relationship_statuses":null,"interested_in":[],"college_networks":[],"college_majors":[],"college_years":[],"education_statuses":[0],"locales":[],"work_networks":[],"user_adclusters":[]}&method=get&access_token=' . $accessToken);
            $datosarray2 = json_decode($datos, true);
            $numAudience = $datosarray2['users'];
            if ($numAudience != "" && is_numeric($numAudience)) {
                $ban = 1;
            } else {
                sleep(3);
                //Espera 3 minutos
                $accessToken = getAccessToken();
                //Trata de obtener un nuevo access_token
            }
        } catch (Exception $e) {
            if ($aux_num_intentos++ > $num_intentos) {
                informarError();
            }
            sleep(3);
            //Espera 3 minutos
            $accessToken = getAccessToken();
            //Trata de obtener un nuevo access_token
        }
    }
    return $numAudience;
}
开发者ID:newbacknew,项目名称:owloo.com,代码行数:30,代码来源:record_country_temp.php


示例2: getWxUserByOpenid

function getWxUserByOpenid($openid)
{
    $access_token = getAccessToken();
    $param = array('access_token' => $access_token, 'openid' => $openid, 'lang' => 'zh_CN');
    $url = "https://api.weixin.qq.com/cgi-bin/user/info";
    //获取userinfo"
    $resp = SimpleHttpClient::get($url, $param);
    $resp = parseResponse($resp);
    return $resp;
}
开发者ID:bianle,项目名称:esmart,代码行数:10,代码来源:wx_getuser.php


示例3: __construct

 /**
  * 构造函数
  * 
  *
  */
 public function __construct()
 {
     parent::__construct();
     $this->wxWechatModel = D('WxWechat');
     $this->wxUserModel = D('WxUser');
     $this->wxGoodsModel = D('WxGoods');
     $this->wxGoodsCategoryModel = D('WxGoodsCategory');
     /* 微信入口进来,从微信获取用户信息 */
     if (isset($_GET['code'])) {
         $AccessToken = getAccessToken();
         $appid = C('APPID');
         $secret = C('APPSECRET');
         $msg = file_get_contents('https://api.weixin.qq.com/sns/oauth2/access_token?appid=' . $appid . '&secret=' . $secret . '&code=' . $code . '&grant_type=authorization_code');
         $merchantOpenid = json_decode($msg, true);
         /* 通过openid从数据库获取用户的微信信息 */
         $merchantWechat = $this->wxWechatModel->getWechat($merchantOpenid['openid']);
         if (!$merchantWechat) {
             /* 如果本地数据库中不存在,则从微信服务器获取 */
             $requestUrl = 'https://api.weixin.qq.com/sns/userinfo?access_token=' . $accessToken . '&openid=' . $merchantOpenid . '&lang=zh_CN';
             $getMerchantWechat = file_get_contents($requestUrl);
             $merchantWechat = json_decode($getMerchantWechat, true);
         }
         /* 如果数据库中获取失败,同时也不能从微信服务器获取用户信息,提示失败 */
         if (!$merchantWechat) {
             die('Param fail');
         }
         /* 把商户微信个人资料存入session */
         session('merchantWechat', $merchantWechat);
     }
     /* 测试数据start:模拟登陆 */
     $testStr = '{
         "subscribe": 1, 
         "openid": "oaQ8auGYY-uQTtIUAFFxqnQJpjWQ", 
         "nickname": "Jahng", 
         "sex": 1, 
         "language": "zh_CN", 
         "city": "广州", 
         "province": "广东", 
         "country": "中国", 
         "headimgurl": "http://wx.qlogo.cn/mmopen/w9h84ibs6ic2cwVYeJTqmRtNpkhXTqYMrAGA5mAW6d5rPQ4qHvDuSkaTlrWEEf1v8icFFOrITC8MRvBrKz3Es35PzqpO7zic10CD/0", 
         "subscribe_time": 1426411696, 
         "remark": ""
     }';
     $merchantWechat = json_decode($testStr, true);
     session('merchantWechat', $merchantWechat);
     /* 测试数据end */
     /* 如果没有商户微信信息,访问失败 */
     if (!session('merchantWechat')) {
         die('Param fail');
     }
     /* 获取用户的微信个人信息 */
     $this->merchantWechat = session('merchantWechat');
     /* 获取用户微销平台个人信息 */
     $this->merchantUser = $this->wxUserModel->getUser(array('openid' => $this->merchantWechat['openid']));
 }
开发者ID:jackycgq,项目名称:ecs_weixiao,代码行数:60,代码来源:IndexController.class.php


示例4: getFilter

function getFilter($currPage, $keyword, $availability, $industry)
{
    $consumer_key = KEY;
    $consumer_secret = SECRET;
    $req_url = 'https://public-api.expertfile.com/v1/organization/' . ID . '/getfilters';
    $oauth = getAccessToken($consumer_key, $consumer_secret, $req_url);
    $req_url = $req_url;
    $params = http_build_query($oauth);
    $ch = curl_init($req_url . '?' . $params);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $responsefromwcf = curl_exec($ch);
    curl_close($ch);
    $responseData = json_decode(urldecode($responsefromwcf));
    return $responseData;
}
开发者ID:wosevision,项目名称:expert-centre,代码行数:15,代码来源:_functions.php


示例5: getResults

function getResults()
{
    $consumer_key = KEY;
    $consumer_secret = SECRET;
    $req_url = 'https://public-api.expertfile.com/v1/organization/' . ID . '/search';
    $oauth = getAccessToken($consumer_key, $consumer_secret, $req_url);
    $parameters = array('fields' => urlencode('user:firstname,user:lastname,user:job_title,tagline,user:location:city,user:location:state,user:location:country'), 'keywords' => urlencode(''), 'location' => urlencode(''), 'industry' => urlencode(''), 'portfolio' => urlencode(''), 'availability' => urlencode(''), 'fee_min' => urlencode(''), 'fee_max' => urlencode(''), 'page_number' => urlencode(1), 'page_size' => 99999, 'keyword' => urlencode(''));
    $req_url = $req_url;
    $params = http_build_query($oauth) . '&' . http_build_query($parameters);
    $ch = curl_init($req_url . '?' . $params);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    $responsefromwcf = curl_exec($ch);
    curl_close($ch);
    $responseData = json_decode($responsefromwcf);
    return $responseData;
}
开发者ID:wosevision,项目名称:expert-centre,代码行数:16,代码来源:search.php


示例6: lzmatch_request

function lzmatch_request()
{
    $ak = getAccessToken();
    if ($ak) {
        $matchKey = $_REQUEST['key'];
        $matchData = getMatch($ak, $matchKey, 'full_card');
        wp_send_json(array('data' => $matchData));
        exit;
    } else {
        setAccessToken();
        $ak = getAccessToken();
        if ($ak) {
            lzmatch_request();
        } else {
            die('Error');
        }
    }
}
开发者ID:roanuz,项目名称:lz-cricket-wordpress,代码行数:18,代码来源:cricket-litzscore.php


示例7: nextAccessToken

function nextAccessToken()
{
    global $accessToken_data, $accessToken_data_index, $accessToken, $accountId, $nun_intentos, $max_nun_intentos;
    $accessToken_data_index++;
    if ($accessToken_data_index < count($accessToken_data)) {
        $accessToken = $accessToken_data[$accessToken_data_index]['access_token'];
        $accountId = $accessToken_data[$accessToken_data_index]['accountId'];
    } else {
        $nun_intentos++;
        if ($nun_intentos < $max_nun_intentos) {
            setAccessToken();
            $accessToken_data = getAccessToken();
            $accessToken_data_index = -1;
            nextAccessToken();
        } else {
            informarErrorActividades();
        }
    }
}
开发者ID:newbacknew,项目名称:owloo.com,代码行数:19,代码来源:record_country_age_language_relationship_1.php


示例8: nextAccessToken

function nextAccessToken()
{
    global $accessToken_data, $accessToken_data_index, $accessToken, $accountId, $pageId, $pageName, $nun_intentos, $max_nun_intentos;
    $accessToken_data_index++;
    if ($accessToken_data_index < count($accessToken_data)) {
        $accessToken = $accessToken_data[$accessToken_data_index]['access_token'];
        $accountId = $accessToken_data[$accessToken_data_index]['accountId'];
        $pageId = $accessToken_data[$accessToken_data_index]['pageId'];
        $pageName = $accessToken_data[$accessToken_data_index]['pageName'];
    } else {
        $nun_intentos++;
        if ($nun_intentos < $max_nun_intentos) {
            setAccessToken();
            $accessToken_data = getAccessToken();
            $accessToken_data_index = -1;
            nextAccessToken();
        } else {
            send_email('country_language_3_1', 'Owloo ERROR - Pais LANGUAGE 3.1', 'ERROR en la captura de datos.', true, 'Access Token - Pais LANGUAGE - ID = ' . $_SERVER['argv'][1]);
        }
    }
}
开发者ID:newbacknew,项目名称:owloo.com,代码行数:21,代码来源:record_country_language.php


示例9: getJsApiTicket

function getJsApiTicket($appId, $appSecret)
{
    // jsapi_ticket 应该全局存储与更新,以下代码以写入到文件中做示例
    $ticket = _ROOT_ . "/jsapi_ticket.json";
    //$data = json_decode(file_get_contents("jsapi_ticket.json"));
    $data = json_decode(file_get_contents($ticket));
    if ($data->expire_time < time()) {
        $accessToken = getAccessToken($appId, $appSecret);
        $url = "https://api.weixin.qq.com/cgi-bin/ticket/getticket?type=jsapi&access_token={$accessToken}";
        $res = json_decode(httpGet($url));
        $ticket = $res->ticket;
        if ($ticket) {
            $data->expire_time = time() + 7000;
            $data->jsapi_ticket = $ticket;
            $fp = fopen($ticket, "w");
            fwrite($fp, json_encode($data));
            fclose($fp);
        }
    } else {
        $ticket = $data->jsapi_ticket;
    }
    return $ticket;
}
开发者ID:zhouweilin,项目名称:liveapp,代码行数:23,代码来源:function.php


示例10: getYearlyDashboardMetrics

function getYearlyDashboardMetrics()
{
    global $coll;
    $query = $coll->findOne(array('username' => $_SESSION["username"]));
    $refresh_token = $query['ga_refresh_token'];
    $property = $query['ga_web_property']['ga_property_id'];
    $access_token = getAccessToken($refresh_token);
    $endDate = date('Y-m-d');
    $startDate = date('Y-m-d', strtotime('-365 day'));
    if (isset($property)) {
        //Get daily visits and new visits for the last month
        $url = 'https://www.googleapis.com/analytics/v3/data/ga?ids=ga:' . $property . '&start-date=' . $startDate . '&end-date=' . $endDate . '&metrics=ga:visitors,ga:newVisits&dimensions=ga:year,ga:month';
        $ch = curl_init();
        $timeout = 5;
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array('Authorization: Bearer ' . $access_token));
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
        curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
        $data = curl_exec($ch);
        curl_close($ch);
        return json_decode($data, true);
    }
}
开发者ID:slampana,项目名称:business_dashboard_app,代码行数:24,代码来源:func.ga.views.php


示例11: define

define('API_SECRET', 'a1580d3de5b915007796abfd3b72466e');
define('REDIRECT_URI', 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME']);
define('SCOPE', 'read_stream');
// You'll probably use a database
session_name('facebook');
session_start();
// OAuth 2 Control Flow
if (isset($_GET['error'])) {
    // LinkedIn returned an error
    print $_GET['error'] . ': ' . $_GET['error_description'];
    exit;
} elseif (isset($_GET['code'])) {
    // User authorized your application
    if ($_SESSION['state'] == $_GET['state']) {
        // Get token so you can make API calls
        getAccessToken();
    } else {
        // CSRF attack? Or did you mix up your states?
        exit;
    }
} else {
    if (empty($_SESSION['expires_at']) || time() > $_SESSION['expires_at']) {
        // Token has expired, clear the state
        $_SESSION = array();
    }
    if (empty($_SESSION['access_token'])) {
        // Start authorization process
        getAuthorizationCode();
    }
}
// Congratulations! You have a valid token. Now fetch your profile
开发者ID:bhagwangurav,项目名称:push2press,代码行数:31,代码来源:oauth-facebook.php


示例12: getAccessToken

<?php

include_once 'modules/config.php';
if (!loggedIn()) {
    echo '<script> window.location="login.php"; </script> ';
} else {
    $query = $coll->findOne(array('username' => $_SESSION["username"]));
    $refresh_token = $query['ga_refresh_token'];
    if (!isset($query['ga_refresh_token'])) {
        echo '<script> window.location="' . $get_ga_code_url . '"; </script> ';
    } else {
        $access_token = getAccessToken($refresh_token);
        //Get web properties for account
        if (isset($access_token)) {
            $result_properties = getWebProperties($access_token);
            foreach ($result_properties['items'] as $obj_add) {
                $dropdown_add .= "<option value='" . $obj_add['id'] . "*" . $obj_add['name'] . "'>" . $obj_add['name'] . "</option>";
            }
            foreach ($query['ga_web_property'] as $obj_delete) {
                $dropdown_delete .= "<option value='" . $obj_delete['ga_property_id'] . "'>" . $obj_delete['ga_property_name'] . "</option>";
            }
        }
    }
    if (isset($_POST['property_add'])) {
        $try = explode('*', $_POST['property_add']);
        $ga_property_id = $try[0];
        $ga_property_name = $try[1];
        setWebProperty($query['username'], $ga_property_id, $ga_property_name);
        echo '<script>parent.window.location.reload(true);</script>';
    }
    if (isset($_POST['property_delete'])) {
开发者ID:slampana,项目名称:business_dashboard_app,代码行数:31,代码来源:ga-get-profile.php


示例13: getAccessToken

<?php

/*
 * 菜单管理页面
 *
 */
global $token;
$token = getAccessToken();
function requestMenu()
{
    global $token;
    $url = "https://api.weixin.qq.com/cgi-bin/menu/get?access_token=" . $token;
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
    $res = curl_exec($ch);
    curl_close($ch);
    return $res;
}
if (isset($_POST['sectionCount'])) {
    $sectionCount = $_POST['sectionCount'];
    $menu = [];
    for ($idx = 0; $idx < $sectionCount; $idx++) {
        $subMenu = [];
        for ($idy = 0; $idy < 5; $idy++) {
            if (!empty($_POST[$idx . '_subName_' . $idy]) && $_POST[$idx . '_subName_' . $idy] != 'none') {
                $subMenu[$idy] = getCorrectSubmenu($idx, $idy);
            }
        }
        if (!empty($_POST[$idx . '_menu'])) {
            $menu[$idx] = getCorrectMainMenu($idx, $subMenu);
开发者ID:slientServer,项目名称:weixin_helper,代码行数:31,代码来源:menu_page.php


示例14: home_select_booktype_unique_mobile

 public function home_select_booktype_unique_mobile()
 {
     $ret->status = 0;
     $ret->msg = 'No Data';
     if ($_REQUEST['code']) {
         //just authenticated the application
         $params->app_id = $this->config->item('fb_appkey');
         //$params->redirect_url = $this->config->item('fb_canvaspage') . '/main/home_select_booktype/';
         $params->redirect_url = $this->config->item('fb_canvaspage') . '/main/filter_page/';
         $params->app_secret = $this->config->item('fb_appsecret');
         $params->code = trim($_REQUEST['code']);
         $token_info = getAccessToken($params);
         $user = getFacebookUserDetails($params);
         //setcookie("hardcover_fbid", $user->id, 0,'/');
         //setcookie("hardcover_token", $token_info->access_token,0,'/');	//expires in 2hrs
         $this->retrieve_fbdata($user->id, $token_info->access_token);
         $this->start_create_book();
     } else {
         //this is creating another book
         $ret->status = 1;
         $ret->msg = '';
         //$this->start_create_book();
         //$this->start_create_book();
     }
     $param = new stdClass();
     $param->book_info_id = $_COOKIE['hardcover_book_info_id'];
     $param->facebook_id = $_COOKIE['hardcover_fbid'];
     $data['token'] = $_COOKIE['hardcover_token'];
     $data['book_filter'] = $this->filter_model->get_filter($param);
     $data['user_albums'] = $this->filter_model->get_user_albums($param);
     $data['user_albums_data'] = array();
     $p_data = '';
     foreach ($data['user_albums'] as $k1 => $v1) {
         $p_data = '';
         $param->album_id = $v1->album_id;
         $photo_data = $this->filter_model->get_album_photos($param);
         if (count($photo_data) > 0) {
             $p_data .= '<ul style="display:none;" class="alb_photo hide albb_' . $v1->album_id . '" id="photos_from_album"  >';
             foreach ($photo_data as $k => $v) {
                 $p_data .= '<li><img  src="' . $v->small . '"/><br/><center><input type="checkbox"  name="photo[' . $v1->album_id . '][' . $v->fb_dataid . ']" id="photo_' . $v->fb_dataid . '" value="' . $v->fb_dataid . '" /></center></li>';
             }
             $p_data .= '</ul>';
         }
         $data['user_albums_data'][$v1->album_id] = $p_data;
     }
     // print_r($data); exit;
     $ret->data = $this->load->view('filter_page_new_unique_mobile', $data, TRUE);
     echo json_encode($ret);
 }
开发者ID:vlad1500,项目名称:example-code,代码行数:49,代码来源:main.php


示例15: define

<?php

define('ROOT_PATH', realpath(dirname(__FILE__)) . '/');
require_once 'vendor/autoload.php';
require_once 'src/config.php';
require_once 'src/google.php';
require_once 'src/spreadsheet.php';
require_once 'src/insert.php';
//-----------------------------------------------------------------------------
$entries = readFromFile(ROOT_PATH . $iniSettings['bug_file']);
if (count($entries) == 0) {
    echo "No Entries";
    exit;
}
//-----------------------------------------------------------------------------
$accessToken = getAccessToken($client);
$spreadsheet = getSpreadsheet($accessToken, $iniSettings['sheet_title']);
$worksheetFeed = $spreadsheet->getWorksheets();
$worksheet = $worksheetFeed->getByTitle('Reported Typos');
//-----------------------------------------------------------------------------
$results = insertLine($worksheet, $entries);
echo json_encode($results);
开发者ID:nickbreslin,项目名称:google-spreadsheet-bug-tracker,代码行数:22,代码来源:insert.php


示例16: Creds

<?php

require 'ConfigFactory.php';
require 'OAuthRequest.php';
$c = new Creds();
$creds = $c->creds();
$links = $c->links();
$accessTokenData = getAccessToken($links, $creds);
$paymentId = "";
$payment = new OAuthRequest($endpoint['getPaymentById'], $accessTokenData, null, $paymentId);
$payment->createHeader();
echo $payment->sendRequest();
开发者ID:Teino1978-Corp,项目名称:Teino1978-Corp-getPayment.php,代码行数:12,代码来源:getPayment.php


示例17: header

<?php

header("Content-Type: text/html; charset=utf-8");
require_once "./oauth/getAccessToken.php";
require_once "./oauth/getSessionKey.php";
require_once "./common/http_post_contents.php";
require_once "./common/config.inc.php";
require_once "./api/users.getProfileInfo.php";
require_once "./api/users.getInfo.php";
session_destroy();
if (isset($_GET['code'])) {
    $code = $_GET['code'];
    $accessToken = getAccessToken($code);
    $result = json_decode($accessToken);
    //print_r($result) ;
    /*
    Format
    
    stdClass Object ( 
       [scope] => operate_like publish_share publish_feed send_invitation 
       [expires_in] => xxx
       [refresh_token] => xxx
       [user] => stdClass Object ( 
           [id] => xxx 
           [name] => xxx
           [avatar] => Array ( 
               [0] => stdClass Object ( 
                   [type] => avatar 
                   [url] => xxx 
               ) 
               [1] => stdClass Object ( 
开发者ID:yunsite,项目名称:oauth-for-qq-renren-sina,代码行数:31,代码来源:success.php


示例18: header

<?php

header("Content-Type: application/json");
function getAccessToken()
{
    $aCode = file_get_contents('https://graph.facebook.com/oauth/access_token?client_id=866515813415087&client_secret=5c19dd551cc00c0003fa196371dde23f&grant_type=client_credentials');
    return $aCode;
}
$access_token = getAccessToken();
$fields = "id,name,description,link,count";
#source - for the actual photo source;
$fb_page_id = "234249230011385";
# 53249966765 1456387134662284 234249230011385
// $json_link = "http://graph.facebook.com/v2.4/${fb_page_id}/albums?fields=${fields}&access_token=${access_token}";
// $json = file_get_contents($json_link);
// $obj = json_decode($json, true, 512, JSON_BIGINT_AS_STRING);
// $album_count = count($obj['data']);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://graph.facebook.com/v2.4/" . $album_number . "/photos/?fields=id,name,images,description&{$access_token}");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_FAILONERROR, true);
curl_setopt($ch, CURLOPT_HEADER, false);
$json = curl_exec($ch);
curl_close($ch);
# $results = json_decode($json, true, 512, JSON_BIGINT_AS_STRING);
echo $results;
开发者ID:ZeroG001,项目名称:reochar,代码行数:26,代码来源:get_photos.php


示例19: sendPayment

 public function sendPayment($access_object, $pay_to_user_id, $amount, $note)
 {
     $url = API_URL . '/payments';
     $fields = array('access_token' => getAccessToken($access_object), 'user_id' => $pay_to_user_id, 'amount' => $amount, 'note' => $note . ' via CabEasy');
     $response = $this->curlMethod($url, $fields);
     return $response;
 }
开发者ID:Breadamonium,项目名称:venmo,代码行数:7,代码来源:Venmo.php


示例20: expandHomeDirectory

} else {
    // Load previously authorized credentials from a file.
    $credentialsPath = expandHomeDirectory(CREDENTIALS_PATH);
    if (file_exists($credentialsPath)) {
        $accessToken = file_get_contents($credentialsPath);
    } else {
        // Request authorization from the user.
        $client = getClient();
        $authUrl = $client->createAuthUrl();
        echo "<a href='{$authUrl}'>Log in</a>";
    }
}
if (file_exists($credentialsPath)) {
    // Get the API client and construct the service object.
    $client = getClient();
    $client = getAccessToken($client);
    $service = new Google_Service_Gmail($client);
    $optParams = array();
    $userId = 'me';
    if (isset($_GET['search'])) {
        $search = $_GET['search'];
        $method = $_GET['method'];
        if (isset($_GET['q'])) {
            $optParams['q'] = $_GET['q'];
        }
        if (isset($_GET['pageToken'])) {
            $optParams['pageToken'] = $_GET['pageToken'];
        }
        if (isset($_GET['includeSpamTrash'])) {
            $includeSpamTrash = $_GET['includeSpamTrash'];
        }
开发者ID:ktharmabalan,项目名称:gmail,代码行数:31,代码来源:data.php



注:本文中的getAccessToken函数示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
PHP getAccessTokenFromSession函数代码示例发布时间:2022-05-15
下一篇:
PHP getAccessPickListValues函数代码示例发布时间:2022-05-15
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap