07 ago 2009 11h25
Venda: Ssd Sata Wd Green 240gb - Para Notebook, Mini Pc - 2.5
Venda: Memoria Corsair 8gb (2 X 4gb) Ddr3 Notebook, Mini Pc
Venda: Injetor Poe Eap225 24v Passivo - Tl-poe2412g - Tp-link
Venda: Injetor Poe Ubiquiti 802.3at 48v 30w Gigabit U-poe-at
<?
/*
Autor: ThiagoInfo
Site: http://mndti.com
Referencia 1: http://apiwiki.twitter.com
Referência 2: http://bit.ly/apidocs
Referência 3: http://davidwalsh.name/bitly-php
*/
class twitter_bit{
var $usuario = ''; // usuario do twitter e do bit
var $senha = ''; // senha do twitter
var $APIKey = ''; // apikey do bit.ly
//----------------------------------------------------------------------------------
// FUNÇÃO EM CURL, NECESSÁRIA PARA POSTAR NO TWITER E HOSTS COM URL REMOTA DISABLED
//----------------------------------------------------------------------------------
function curl_t_b($url, $tipo=0, $pst=0, $getinfo=0, $verbose=0){
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
if ($verbose == '1'){
curl_setopt($ch, CURLOPT_VERBOSE, 1);
}
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
if($this->usuario !== false && $this->senha !== false){
curl_setopt($ch, CURLOPT_USERPWD, $this->usuario.':'.$this->senha);
}
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_1);
if ($pst == '1'){
curl_setopt ($ch, CURLOPT_POST, true);
}
$conteudo = curl_exec($ch);
if ($getinfo == '1'){
$statustw = curl_getinfo($ch);
}
curl_close($ch);
if ($tipo == '1'){
return $statustw;
} else{
return $conteudo;
}
}
//------------------------------------------------------------------------------------
// FUNÇÃO TRABALHADA ADAPTADA COM BASE EM: http://davidwalsh.name/bitly-php
// FUNÇÃO RESPONSÁVEL POR CRIAR A URL PEQUENA NO BIT.LY
//------------------------------------------------------------------------------------
function url_pequena($url_longa, $formato='xml', $historico=1, $versao='2.0.1') {
// url do API bit.ly com as variavéis
$conteudo = $this->curl_t_b('http://api.bit.ly/shorten?version='.$versao.'&longUrl='.urlencode($url_longa).'&login='.$this->usuario.'&apiKey='.$this->APIKey.'&format='.$formato.'&history='.$historico);
// se o formato escolhido for o json
if(strtolower($formato) == 'json') {
$url_p = @json_decode($conteudo,true);
// retorno a url via json
return $url_p['results'][$url_longa]['shortUrl'];
// se for por xml que é o padrão setado na função
} else {
$xml = simplexml_load_string($conteudo);
// retorno a url via xml
return 'http://bit.ly/'.$xml->results->nodeKeyVal->hash;
}
}
function envia($texto, $url){
// cria a url pequena no bit.ly e retorno a url
$url_peq = $this->url_pequena($url, 'json');
// declaro a texto a enviar e a url pequena
$pst_url = "http://twitter.com/statuses/update.xml?status=".urlencode(stripslashes(urldecode($texto ." ". $url_peq)));
// envio para o twitter
$status = $this->curl_t_b($pst_url, '1', '1', '1', '1');
// retorno o status http_code
return $status["http_code"];
}
}
?>
// GERANDO NOVO TÓPICO NO TWITER
@require(ROOT_PATH."/include/classe.tw_bt.php");
$t = new twitter_bit; // instancia a classe twitter bit
$t->usuario = 'usuario do twitter e do bit'; // usuario do twitter e bit.ly
$t->senha = 'senha do twitter'; // senha do twitter
$t->APIKey = 'api key do bit'; // apikey do bit.ly
$tw = $t->envia('testando api twiter', 'http://www.mndti.com');
// CAPTURA O CÓDIGO DE RETORNO DO TWITTER E EXIBE O STATUS - ATRAVÉS DA FUNÇÃO ENVIA
if ($tw == '200'){
$tw_msg = "<br />Tópico enviado para o Twitter com Sucesso!";
} else {
$tw_msg = "<br />Não foi possível enviar o tópico para o Twitter.";
}
© MNDTI - Tecnologia e Informação. Todos Direitos Reservados. Política de privacidade.