當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Auth_OpenID_ServiceEndpoint::fromHTML方法代碼示例

本文整理匯總了PHP中Auth_OpenID_ServiceEndpoint::fromHTML方法的典型用法代碼示例。如果您正苦於以下問題:PHP Auth_OpenID_ServiceEndpoint::fromHTML方法的具體用法?PHP Auth_OpenID_ServiceEndpoint::fromHTML怎麽用?PHP Auth_OpenID_ServiceEndpoint::fromHTML使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Auth_OpenID_ServiceEndpoint的用法示例。


在下文中一共展示了Auth_OpenID_ServiceEndpoint::fromHTML方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: fromDiscoveryResult

 static function fromDiscoveryResult($discoveryResult)
 {
     if ($discoveryResult->isXRDS()) {
         return Auth_OpenID_ServiceEndpoint::fromXRDS($discoveryResult->normalized_uri, $discoveryResult->response_text);
     } else {
         return Auth_OpenID_ServiceEndpoint::fromHTML($discoveryResult->normalized_uri, $discoveryResult->response_text);
     }
 }
開發者ID:openid,項目名稱:php-openid,代碼行數:8,代碼來源:Discover.php

示例2: Auth_OpenID_discoverWithoutYadis

function Auth_OpenID_discoverWithoutYadis($uri, &$fetcher)
{
    $http_resp = @$fetcher->get($uri);
    if ($http_resp->status != 200) {
        return array($uri, array());
    }
    $identity_url = $http_resp->final_url;
    // Try to parse the response as HTML to get OpenID 1.0/1.1 <link
    // rel="...">
    $openid_services = Auth_OpenID_ServiceEndpoint::fromHTML($identity_url, $http_resp->body);
    return array($identity_url, $openid_services);
}
開發者ID:ramziammar,項目名稱:websites,代碼行數:12,代碼來源:Discover.php

示例3: Auth_OpenID_discoverWithYadis

function Auth_OpenID_discoverWithYadis($uri, &$fetcher)
{
    // Discover OpenID services for a URI. Tries Yadis and falls back
    // on old-style <link rel='...'> discovery if Yadis fails.
    // Might raise a yadis.discover.DiscoveryFailure if no document
    // came back for that URI at all.  I don't think falling back to
    // OpenID 1.0 discovery on the same URL will help, so don't bother
    // to catch it.
    $openid_services = array();
    $http_response = null;
    $response = Services_Yadis_Yadis::discover($uri, $http_response, $fetcher);
    if ($response) {
        $identity_url = $response->uri;
        $openid_services = $response->xrds->services(array('filter_MatchesAnyOpenIDType'));
    }
    if (!$openid_services) {
        return @Auth_OpenID_discoverWithoutYadis($uri, $fetcher);
    }
    if (!$openid_services) {
        $body = $response->body;
        // Try to parse the response as HTML to get OpenID 1.0/1.1
        // <link rel="...">
        $service = Auth_OpenID_ServiceEndpoint::fromHTML($identity_url, $body);
        if ($service !== null) {
            $openid_services = array($service);
        }
    } else {
        $openid_services = Auth_OpenID_makeOpenIDEndpoints($response->uri, $openid_services);
    }
    return array($identity_url, $openid_services, $http_response);
}
開發者ID:Tjorriemorrie,項目名稱:app,代碼行數:31,代碼來源:Discover.php

示例4: Auth_OpenID_discoverWithoutYadis

function Auth_OpenID_discoverWithoutYadis($uri, &$fetcher)
{
    $http_resp = @$fetcher->get($uri);
    if ($http_resp->status != 200) {
        return array(null, array(), $http_resp);
    }
    $identity_url = $http_resp->final_url;
    // Try to parse the response as HTML to get OpenID 1.0/1.1 <link
    // rel="...">
    $endpoint = new Auth_OpenID_ServiceEndpoint();
    $service = $endpoint->fromHTML($identity_url, $http_resp->body);
    if ($service === null) {
        $openid_services = array();
    } else {
        $openid_services = array($service);
    }
    return array($identity_url, $openid_services, $http_resp);
}
開發者ID:Cyberspace-Networks,項目名稱:PeopleAggregator,代碼行數:18,代碼來源:Discover.php


注:本文中的Auth_OpenID_ServiceEndpoint::fromHTML方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。