Example #1
0
 /**
  * Reblog the post from post array.
  * 
  * @param string $blogName
  * @param object $post
  * 
  * @return array the response array
  */
 protected function reblogPost($blogName, $post, array $options = null)
 {
     $id = $post->id;
     $reblogKey = $post->reblog_key;
     return $this->client->reblogPost($blogName, $id, $reblogKey, $options);
 }