本文整理汇总了PHP中Zend_Gdata::getHttpClient方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Gdata::getHttpClient方法的具体用法?PHP Zend_Gdata::getHttpClient怎么用?PHP Zend_Gdata::getHttpClient使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Gdata
的用法示例。
在下文中一共展示了Zend_Gdata::getHttpClient方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testSpecificHttpClient
public function testSpecificHttpClient()
{
$client = new Zend_Http_Client();
$gdata = new Zend_Gdata($client);
$client2 = $gdata->getHttpClient();
$this->assertTrue($client2 instanceof Zend_Http_Client, 'Expecting object of type Zend_Http_Client, got ' . (gettype($client) == 'object' ? get_class($client) : gettype($client)));
$this->assertSame($client, $client2);
}
示例2: testSpecificHttpClient
public function testSpecificHttpClient()
{
$client = new Zend_Http_Client();
$gdata = new Zend_Gdata($client);
$this->assertSame($client, $gdata->getHttpClient());
}
示例3: storeGmailEmailsTemprorily
/**
* retrieves email ids for all the contacts from Gmail and stores in Ofuz DB temprorily.
*
* @return void
* @see Gdata
*/
function storeGmailEmailsTemprorily()
{
global $_SESSION, $_GET;
$client = $this->client;
$useremailid = urlencode($_SESSION["uEmail"]);
// Create a Gdata object using the authenticated Http Client
$gdata = new Zend_Gdata($client);
//$query = new Zend_Gdata_Query('http://www.google.com/m8/feeds/contacts/'.$_SESSION["uEmail"].'%40gmail.com/full');
$query = new Zend_Gdata_Query('http://www.google.com/m8/feeds/contacts/' . $useremailid . '/full');
$query->setMaxResults(1000);
try {
$feed = $gdata->getFeed($query);
if ($feed) {
$q_email = new sqlQuery($this->getDbCon());
foreach ($feed as $entry) {
// retrieving emails
$extensionElements = $entry->getExtensionElements();
foreach ($extensionElements as $extensionElement) {
//emails
if ($extensionElement->rootNamespaceURI == "http://schemas.google.com/g/2005" && $extensionElement->rootElement == "email") {
$attributes = $extensionElement->getExtensionAttributes();
if (array_key_exists('address', $attributes)) {
if ($attributes['rel']['value'] == "http://schemas.google.com/g/2005#home") {
//$data['em_home'] = $attributes['address']['value'];
$sql_email_ins = "INSERT INTO \n temp_gmail_emails(email_address)\n VALUES('" . $attributes['address']['value'] . "')\n ";
$q_email->query($sql_email_ins);
}
if ($attributes['rel']['value'] == "http://schemas.google.com/g/2005#work") {
$sql_email_ins = "INSERT INTO \n temp_gmail_emails(email_address)\n VALUES('" . $attributes['address']['value'] . "')\n ";
$q_email->query($sql_email_ins);
}
if ($attributes['rel']['value'] == "http://schemas.google.com/g/2005#other") {
$sql_email_ins = "INSERT INTO \n temp_gmail_emails(email_address)\n VALUES('" . $attributes['address']['value'] . "')\n ";
$q_email->query($sql_email_ins);
}
}
}
}
}
$q_email->free();
}
} catch (Exception $e) {
$status_code = $gdata->getHttpClient()->getLastResponse()->getStatus();
$this->status_code_desc = $this->getStatusDescription($status_code);
}
}