Advertisement
lamiastella

getUserTags

Mar 6th, 2017
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. 1266 public function getUserTags($usernameId, $maxid = null, $minTimestamp = null)
  2. 1267 {
  3. 1268 return $this->request("usertags/$usernameId/feed/")
  4. 1269 ->addParams('rank_token', $this->rank_token)
  5. 1270 ->addParams('ranked_content', 'true')
  6. 1271 ->addParams('max_id', (!is_null($maxid) ? $maxid : ''))
  7. 1272 ->addParams('min_timestamp', (!is_null($minTimestamp) ? $minTimestamp : ''))
  8. 1273 ->getResponse(new UsertagsResponse());
  9. 1274 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement