将goo.gl API与外部脚本集成

时间:2010-12-26 04:19:08

标签: php goo.gl

我在标题中传递了一个文件vars.php,其中包含:

$link="http://www.mysite.com";

我想使用以下代码随机将一个随机字符串附加到mysite.com,如mysite.com/?(随机字符串):

$code = md5(uniqid(rand(), true));
$mywebsite = 'http://mysite.com?kjdf='.$code;

然后将其传递到goo.gl api中。这样我每次加载脚本时都会得到一个新的goo.gl url:

<?php
/* 

$googl = new goo_gl('$mywebsite');
echo $googl->result();
*/

class goo_gl{

 var $url, $resul;

 //goo.gl construct method
 function goo_gl($url){

  $this->url = $url;

  $curl = curl_init(); 
  curl_setopt($curl, CURLOPT_URL, 'http://goo.gl/api/url'); 
  curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); 
  curl_setopt($curl, CURLOPT_POST, 1); 
  curl_setopt($curl, CURLOPT_POSTFIELDS, 'user=toolbar@google.com&url='.urlencode($this->url).'&auth_token='.$this->googlToken($url)); 
  $saida = curl_exec($curl); 
  curl_close($curl);
  if($saida){
   $json = json_decode($saida);
   $this->resul = $json->short_url;
  }
 }

 //show url shorted by goo.gl
 function result(){
  return $this->resul;
 }

 //token code
 function googlToken($b){
  $i = $this->tke($b);
  $i = $i >> 2 & 1073741823;
  $i = $i >> 4 & 67108800 | $i & 63;
  $i = $i >> 4 & 4193280 | $i & 1023;
  $i = $i >> 4 & 245760 | $i & 16383;
  $j = "7";
  $h = $this->tkf($b);
  $k = ($i >> 2 & 15) << 4 | $h & 15;
  $k |= ($i >> 6 & 15) << 12 | ($h >> 8 & 15) << 8;
  $k |= ($i >> 10 & 15) << 20 | ($h >> 16 & 15) << 16;
  $k |= ($i >> 14 & 15) << 28 | ($h >> 24 & 15) << 24;
  $j .= $this->tkd($k);
  return $j;
 }

 function tkc(){
  $l = 0;
  foreach(func_get_args() as $val){
   $val &= 4294967295;
   $val += $val > 2147483647 ? -4294967296 : ($val < -2147483647 ? 4294967296 : 0);
   $l   += $val;
   $l   += $l > 2147483647 ? -4294967296 : ($l < -2147483647 ? 4294967296 : 0);
  }
  return $l;
 }

 function tkd($l){
  $l = $l > 0 ? $l : $l + 4294967296;
  $m = "$l";  //deve ser uma string
  $o = 0;
  $n = false;
  for($p = strlen($m) - 1; $p >= 0; --$p){
   $q = $m[$p];
   if($n){
    $q *= 2;
    $o += floor($q / 10) + $q % 10;
   } else {
    $o += $q;
   }
   $n = !$n;
  }
  $m = $o % 10;
  $o = 0;
  if($m != 0){
   $o = 10 - $m;
   if(strlen($l) % 2 == 1){
    if ($o % 2 == 1){
     $o += 9;
    }
    $o /= 2;
   }
  }
  return "$o$l";
 }

 function tke($l){
  $m = 5381;
  for($o = 0; $o < strlen($l); $o++){
   $m = $this->tkc($m << 5, $m, ord($l[$o]));
  }
  return $m;
 }

 function tkf($l){
  $m = 0;
  for($o = 0; $o < strlen($l); $o++){
   $m = $this->tkc(ord($l[$o]), $m << 6, $m << 16, -$m);
  }
  return $m;
 }

}

?>

结果是每次都有不同的goo.gl缩短链接。最后我想把它传递到标题中(在php文件的顶部)。

<?php
$picture="http://www.mysite.com/myimage.gif"; //url to a picture - e.g. http://www.mysite.com/mypic.gif
$link="http://goo.gl/blahblahblah"; //your link.
?>

所以goo.gl/blahblahblah会重定向到mysite.com /?(random_string)

这是一项雄心勃勃的任务,但如果有人能提供帮助那就很棒

1 个答案:

答案 0 :(得分:0)

您当前的代码几乎可以使用。

$g = new goo_gl($mywebsite);
$shortened =  $g->result();

但是,这需要在定义类之后执行。