本文整理汇总了PHP中XWB_plugin::getHttp方法的典型用法代码示例。如果您正苦于以下问题:PHP XWB_plugin::getHttp方法的具体用法?PHP XWB_plugin::getHttp怎么用?PHP XWB_plugin::getHttp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类XWB_plugin
的用法示例。
在下文中一共展示了XWB_plugin::getHttp方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: weibo
/**
* 构造函数
*
* @param @oauth_token
* @param @oauth_token_secret
* @return
*/
function weibo($oauth_token = NULL, $oauth_token_secret = NULL)
{
$this->sha1_method = new ns_OAuthSignatureMethod_HMAC_SHA1();
$this->consumer = new ns_OAuthConsumer(XWB_APP_KEY, XWB_APP_SECRET_KEY);
$this->setConfig();
$this->http = XWB_plugin::getHttp(false);
}
示例2: pushbackCommunicator
/**
* 构造函数
*/
function pushbackCommunicator()
{
$this->http = XWB_plugin::getHttp();
$this->appkey = XWB_APP_KEY;
$this->appsecret = XWB_APP_SECRET_KEY;
$this->serverUrl = XWB_PUSHBACK_URL;
$this->pushbackAuthKey = (string) XWB_Plugin::pCfg('pushback_authkey');
}
示例3: weibo2_0
/**
* 构造函数
*
* @param @oauth_token
* @param @oauth_token_secret
* @return
*/
function weibo2_0($access_token = NULL, $oauth_token_secret = NULL)
{
$this->setConfig();
$this->http = XWB_plugin::getHttp(false);
}
示例4: apixwb
function apixwb($url = '')
{
$this->url = $url ? $url : XWB_plugin::pCfg('url_to_xweibo');
$this->http = XWB_plugin::getHttp(false);
}
示例5: sinaFaceSync
/**
* 构造函数
*
* @return sinaFaceSync
*/
function sinaFaceSync()
{
$this->_getSinaUserInfo();
$this->http = XWB_plugin::getHttp(false);
}