Last active
May 23, 2018 19:01
-
-
Save FraGoTe/56f024a725ccccff335e28e8262a9aca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$technorati = new Zend_Rest_Client('http://api.technorati.com/bloginfo'); | |
$technorati->key($key); | |
$technorati->url('http://pixelated-dreams.com'); | |
$result = $technorati->get(); | |
echo $result->firstname() .' '. $result->lastname(); | |
$technorati->getHttpClient()->setHeaders( | |
array('user' => 'uewirydjfhkjds22VVhdhZhd', | |
'timestamp' => 134383783 | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment