当前位置: 首页>>代码示例>>PHP>>正文


PHP HttpClient::readCookie方法代码示例

本文整理汇总了PHP中HttpClient::readCookie方法的典型用法代码示例。如果您正苦于以下问题:PHP HttpClient::readCookie方法的具体用法?PHP HttpClient::readCookie怎么用?PHP HttpClient::readCookie使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在HttpClient的用法示例。


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

示例1: HttpClient

error_reporting(E_ALL);
// debug
// TODO: obviously this is just a demo -- needs to be seperated into a new class, etc...
session_start();
require_once 'config.php';
require_once 'http_client.class.php';
try {
    $httpClient = new HttpClient();
    // --------------{{ CHECK FOR TOKEN
    if (isset($_SESSION) && !empty($_SESSION['access_token'])) {
        // *** new session started -- cache session to local file (prevents needing to reauthorize your app)
        $accessToken = $_SESSION['access_token'];
        $httpClient->createCookie($_SESSION['access_token']);
    } else {
        // *** session has expired -- load our cached access_token from a local file
        $accessToken = $httpClient->readCookie();
        if (empty($accessToken)) {
            // no access token found!
            $httpClient->redirectToLoginPage();
        }
    }
    // ----------------}}
    $headers = array('Authorization: Bearer ' . $accessToken);
    // required auth2 header
    $response = $httpClient->getData($apiConfig['userprofileUrlBase'], $headers);
    $responseArray = json_decode($response, TRUE);
} catch (Exception $e) {
    echo '*** Error: exception ' . $e->getMessage();
    //$httpClient->redirectToLoginPage();
    exit;
}
开发者ID:SkaTeMasTer,项目名称:BTCjam-OAuth2-PHP,代码行数:31,代码来源:get_data.php


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