Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Only 6 posts returned #9

Closed
sim-one-n-only opened this issue Jan 1, 2018 · 3 comments
Closed

Only 6 posts returned #9

sim-one-n-only opened this issue Jan 1, 2018 · 3 comments

Comments

@sim-one-n-only
Copy link

I am filtering posts by count but no matter what the count is, it only returns 6 posts.

@kevinongko
Copy link
Owner

hi @sim-one-n-only,

How to reproduce this? Are you using the latest version?
I tried with 12 posts and it works fine

@sim-one-n-only
Copy link
Author

sim-one-n-only commented Jan 9, 2018

@kevinongko
THIS IS THE INSTAGRAM COMPONENT

<vue-instagram token="TOKEN HERE" username="USERNAME HERE" :count="count" :tags="tags">
    <template slot="feeds" slot-scope="props">
        <a :href="props.feed.link" target="_blank" class="col-md-3 col-sm-4 col-xs-6 col-flush" v-bind:style="{ 'background-image': 'url(' + props.feed.images.standard_resolution.url + ')' }">
            <div class="img-overlay">
                <br/><br/>
                <p>{{props.feed.caption.text}}</p>
                <br/>
                <p v-if="props.feed.location"><i class="fa fa-map-marker"></i> <b>{{props.feed.location.name}}</b></p>
            </div>
        </a>
    </template>
    <template slot="error" slot-scope="props">
        <div class="fancy-alert"> {{ props.error.error_message }} </div>
    </template>
</vue-instagram>
<script> import VueInstagram from 'vue-instagram' export default { name: 'app', components: { VueInstagram }, props: { tags: Array, count: Number } } </script>

THIS IS WHERE THE INSTAGRAM COMPONENT IS USED

    <h3 class="text-center">
        <a href="https://www.instagram.com/explore/tags/fearlessinthecommunity/" target="_blank">#fearlessinthecommunity</a>
    </h3>
    <instagram :tags="['fearlessinthecommunity']" :count="30"></instagram>
</div>
<script> import VueScrollClass from 'vue-scroll-class' import Instagram from "@/components/Elements/Instagram"; export default { name: 'app', components: { Instagram }, directives: { 'scroll-class': VueScrollClass, } } </script>

@kevinongko
Copy link
Owner

Hi @sim-one-n-only,
please try again with latest v2.0.0
feel free to open issue if its still a problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants