Tumblr API - 按标记排除结果

时间:2013-09-24 15:11:34

标签: json api jsonp tumblr

我正在建立一个网站,其饲料来自tumblr。一般帖子有一个部分,“特色”帖子有另一部分,由标签指定(即#featured)。

我正在尝试阻止同一帖子在同一页面上的两个不同位置显示,因此对于我的常规Feed部分,有没有办法让{strong>排除帖子{{ 1}}?

2 个答案:

答案 0 :(得分:0)

获得post对象进行处理后,您可以随时查看

if(!in_array($tag_to_exclude, $post->tags)) {
    // Post does not contain tag - display ...
}

我猜你抓住$apidata->response->posts并运行foreach循环?否则请随时询问更多信息

答案 1 :(得分:0)

我一直在努力完成同样的事情并且没有使用Tumblr API。看起来奇怪他们没有这个功能,但我想这就是它的原因。我确实编写了一个可以实现这一目标的PHP类,这对OP或其他任何想要做同样事情的人都有帮助。

class Tumblr {
    private $api_key = 'your_tumblr_api_key';
    private $api_version = 2;
    private $api_uri = 'api.tumblr.com';
    private $blog_name = 'your_tumblr_blog_name';

    private $excluded = 0;
    private $request_total = 0;

    public function get_posts($count = 40, $offset = 0) {
        return json_decode(file_get_contents($this->get_base_url() . 'posts?limit=' . $count . '&offset=' . $offset . $this->get_api_key()), TRUE)['response']['posts'];
    }

    /*
     * Recursive function that can make multiple requests to retrieve
     * the $count number of posts that do not have a tag equal to $tag.
     */
    public function get_posts_without_tag($tag, $count, $offset) {
        $excluded = 0;

        // get the the set of posts, hoping they won't have the tag
        $posts = $this->get_posts($count, $offset);
        foreach ($posts as $key => $post) {
            if (in_array($tag, $post['tags'])) {
                unset($posts[$key]);
                $excluded++;
            }
        }
        // if the full $count hasn't been retrieved, call this function recursively
        if ($excluded > 0) {
            $posts = array_merge($posts, $this->get_posts_without_tag($tag, $excluded, $offset + $count));
        }

        return $posts;
    }

    private function get_base_url() {
        return 'http://' . $this->api_uri . '/v' . $this->api_version . '/blog/' . $this->blog_name . '.tumblr.com/';
    }

    private function get_api_key() {
        return '&api_key=' . $this->api_key;
    }
}

get_posts_without_tag()函数是大多数操作发生的地方。不幸的是,它通过发出多个请求来解决问题。请务必使用您的API密钥和博客名称替换$api_key$blog_name