firemountain / basic-meteor-app

0 stars 0 forks source link

Collection Objects - data we want from Instagram #11

Open firemountain opened 7 years ago

firemountain commented 7 years ago

Collection Objects - data we want from Instagram

the following is a descritpion of how the "ig-social-posts" colleciton objects will display in the UI

exmaple #1 of an object in our "ig-social-posts" collection

{
        id: "1535879627007167666_143984903",
        user: {
            id: "143984903",
            full_name: "Alexander🌛🌜Nazerian",
            profile_picture: "https://scontent.cdninstagram.com/t51.2885-19/s150x150/12976192_241422772878879_1235709196_a.jpg",
            username: "alexnazerian"
        },
        images: {
            thumbnail: {
                width: 150,
                height: 150,
                url: "https://scontent.cdninstagram.com/t51.2885-15/s150x150/e35/18950380_112616532676321_3768085580282331136_n.jpg"
            },
            low_resolution: {
                width: 320,
                height: 320,
                url: "https://scontent.cdninstagram.com/t51.2885-15/s320x320/e35/18950380_112616532676321_3768085580282331136_n.jpg"
            },
            standard_resolution: {
                width: 640,
                height: 640,
                url: "https://scontent.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/18950380_112616532676321_3768085580282331136_n.jpg"
            }
        },
        created_time: "1497311140",
        caption: {
            id: "17885851414003821",
            text: ". Wood Flow ======== . What did I find? --------------- . A #crazybeautiful piece of wood **spiraling** in the _woods_ . ## and 1. One 2. Two",
            created_time: "1497311140",
            from: {
                id: "143984903",
                full_name: "Alexander🌛🌜Nazerian",
                profile_picture: "https://scontent.cdninstagram.com/t51.2885-19/s150x150/12976192_241422772878879_1235709196_a.jpg",
                username: "alexnazerian"
            }
        },
        user_has_liked: false,
        likes: {
            count: 22
        },
        tags: [
            "crazybeautiful"
        ],
        filter: "Normal",
        comments: {
            count: 0
        },
        type: "image",
        link: "https://www.instagram.com/p/BVQimIhhYyy/",
        location: null,
        attribution: null,
        users_in_photo: []
    }

example #2 of an object in our "ig-social-posts" collection

     {
        id: "1529522064229576184_143984903",
        user: {
            id: "143984903",
            full_name: "Alexander🌛🌜Nazerian",
            profile_picture: "https://scontent.cdninstagram.com/t51.2885-19/s150x150/12976192_241422772878879_1235709196_a.jpg",
            username: "alexnazerian"
        },
        images: {
            thumbnail: {
                width: 150,
                height: 150,
                url: "https://scontent.cdninstagram.com/t51.2885-15/s150x150/e35/18812563_1535883333122449_2135064342041722880_n.jpg"
            },
            low_resolution: {
                width: 320,
                height: 320,
                url: "https://scontent.cdninstagram.com/t51.2885-15/s320x320/e35/18812563_1535883333122449_2135064342041722880_n.jpg"
            },
            standard_resolution: {
                width: 640,
                height: 640,
                url: "https://scontent.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/18812563_1535883333122449_2135064342041722880_n.jpg"
            }
        },
        created_time: "1496553260",
        caption: {
            id: "17872113622114009",
            text: "Face made when staring at the phone screen, same face I'm making now ✨🍄✨. #selfie",
            created_time: "1496553260",
            from: {
                id: "143984903",
                full_name: "Alexander🌛🌜Nazerian",
                profile_picture: "https://scontent.cdninstagram.com/t51.2885-19/s150x150/12976192_241422772878879_1235709196_a.jpg",
                username: "alexnazerian"
            }
        },
        user_has_liked: false,
        likes: {
            count: 182
        },
        tags: [
            "selfie"
        ],
        filter: "Normal",
        comments: {
            count: 10
        },
        type: "image",
        link: "https://www.instagram.com/p/BU59Dayhq34/",
        location: null,
        attribution: null,
        users_in_photo: []
    }