social_profile 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/social_profile.rb +8 -3
- data/lib/social_profile/people/google.rb +41 -0
- data/lib/social_profile/people/instagram_parser.rb +17 -0
- data/lib/social_profile/person.rb +9 -7
- data/lib/social_profile/providers/google.rb +6 -0
- data/lib/social_profile/ruby-instagram-scraper.rb +59 -0
- data/lib/social_profile/version.rb +1 -1
- data/social_profile.gemspec +1 -0
- data/spec/mock_json/google/channels.json +22 -0
- data/spec/mock_json/instagram_parser/media.json +1 -0
- data/spec/mock_json/instagram_parser/user.json +1 -0
- data/spec/people/google_spec.rb +24 -0
- data/spec/people/instagram_parser_spec.rb +35 -0
- data/spec/providers/google_spec.rb +68 -0
- metadata +32 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12b687b83067ad32468e01763f2fb5a756c8900c
|
4
|
+
data.tar.gz: ff49b494d2919ed899cddc01cbea43dae24c160b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ba37d1536f107b01340ab2ddd4ece9b56846593d9f4eff40c4b7962188fb92ee0ed2fcb56238f68f3ad4d554aa38403c94d599ee3dbca59af3c99edaf9e1759f
|
7
|
+
data.tar.gz: 2b007d7d48c3aa3ab5e2e6881385e22bd2a42707dab847ff97e3f5e6619a8db80b8c4ef68ef47226ea2a00324ffde4b131d828b7f278c16c56e6c7e93b52eaa2
|
data/lib/social_profile.rb
CHANGED
@@ -4,6 +4,7 @@ module SocialProfile
|
|
4
4
|
autoload :Utils, "social_profile/utils"
|
5
5
|
autoload :Response, "social_profile/response"
|
6
6
|
autoload :Person, "social_profile/person"
|
7
|
+
autoload :RubyInstagramScraper, "social_profile/ruby-instagram-scraper"
|
7
8
|
|
8
9
|
module Providers
|
9
10
|
autoload :Base, "social_profile/providers/base"
|
@@ -12,6 +13,7 @@ module SocialProfile
|
|
12
13
|
autoload :Twitter, "social_profile/providers/twitter"
|
13
14
|
autoload :Instagram, "social_profile/providers/instagram"
|
14
15
|
autoload :Odnoklassniki, "social_profile/providers/odnoklassniki"
|
16
|
+
autoload :Google, "social_profile/providers/google"
|
15
17
|
end
|
16
18
|
|
17
19
|
module People
|
@@ -19,20 +21,23 @@ module SocialProfile
|
|
19
21
|
autoload :Vkontakte, "social_profile/people/vkontakte"
|
20
22
|
autoload :Twitter, "social_profile/people/twitter"
|
21
23
|
autoload :Instagram, "social_profile/people/instagram"
|
24
|
+
autoload :InstagramParser, "social_profile/people/instagram_parser"
|
25
|
+
autoload :Google, "social_profile/people/google"
|
22
26
|
end
|
23
|
-
|
27
|
+
|
24
28
|
def self.get(auth_hash, options = {})
|
25
29
|
provider = auth_hash["provider"].to_s.downcase if auth_hash && auth_hash["provider"]
|
26
|
-
|
30
|
+
|
27
31
|
klass = case provider
|
28
32
|
when "facebook" then Providers::Facebook
|
29
33
|
when "vkontakte" then Providers::Vkontakte
|
30
34
|
when "twitter" then Providers::Twitter
|
31
35
|
when "instagram" then Providers::Instagram
|
32
36
|
when "odnoklassniki" then Providers::Odnoklassniki
|
37
|
+
when "google" then Providers::Google
|
33
38
|
else Providers::Base
|
34
39
|
end
|
35
|
-
|
40
|
+
|
36
41
|
klass.new(auth_hash, options)
|
37
42
|
end
|
38
43
|
|
@@ -0,0 +1,41 @@
|
|
1
|
+
require 'google/apis/youtube_v3'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
module SocialProfile
|
5
|
+
module People
|
6
|
+
class Google < Person
|
7
|
+
# Get friends count
|
8
|
+
#
|
9
|
+
def friends_count
|
10
|
+
@friends_count ||= channels.items.map do |item|
|
11
|
+
(item.statistics.subscriber_count || item.statistics.subscriberCount).to_i
|
12
|
+
end.sum
|
13
|
+
end
|
14
|
+
|
15
|
+
def channels
|
16
|
+
return @channels if @channels
|
17
|
+
|
18
|
+
_channels = client.list_channels('statistics', mine: true)
|
19
|
+
|
20
|
+
@channels = if _channels.respond_to?(:items)
|
21
|
+
_channels
|
22
|
+
elsif _channels.is_a?(String)
|
23
|
+
JSON.parse(_channels, object_class: OpenStruct)
|
24
|
+
end
|
25
|
+
|
26
|
+
@channels
|
27
|
+
end
|
28
|
+
|
29
|
+
protected
|
30
|
+
|
31
|
+
def client
|
32
|
+
return @client if @client
|
33
|
+
|
34
|
+
@client = ::Google::Apis::YoutubeV3::YouTubeService.new
|
35
|
+
@client.authorization = access_token
|
36
|
+
|
37
|
+
@client
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module SocialProfile
|
2
|
+
module People
|
3
|
+
class InstagramParser < Person
|
4
|
+
def last_posts
|
5
|
+
RubyInstagramScraper.get_user_media_nodes(self.uid)['items']
|
6
|
+
end
|
7
|
+
|
8
|
+
def friends_count
|
9
|
+
user['followed_by']['count']
|
10
|
+
end
|
11
|
+
|
12
|
+
def user
|
13
|
+
RubyInstagramScraper.get_user(self.uid)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -3,7 +3,7 @@ require "social_profile/version"
|
|
3
3
|
module SocialProfile
|
4
4
|
class Person
|
5
5
|
attr_reader :uid, :access_token, :options
|
6
|
-
|
6
|
+
|
7
7
|
def initialize(uid, access_token, options = {})
|
8
8
|
@uid = uid
|
9
9
|
@access_token = access_token
|
@@ -18,17 +18,19 @@ module SocialProfile
|
|
18
18
|
when "vkontakte" then People::Vkontakte
|
19
19
|
when "twitter" then People::Twitter
|
20
20
|
when "instagram" then People::Instagram
|
21
|
+
when "instagram_parser" then People::InstagramParser
|
22
|
+
when "google" then People::Google
|
21
23
|
else Person
|
22
24
|
end
|
23
|
-
|
25
|
+
|
24
26
|
klass.new(uid, access_token, options)
|
25
27
|
end
|
26
|
-
|
28
|
+
|
27
29
|
# Find album by id
|
28
30
|
def fetch_album(album_id)
|
29
31
|
raise NotImplementedError("Subclasses should implement this!")
|
30
32
|
end
|
31
|
-
|
33
|
+
|
32
34
|
# Create new album id
|
33
35
|
def album!(options = {})
|
34
36
|
raise NotImplementedError("Subclasses should implement this!")
|
@@ -38,7 +40,7 @@ module SocialProfile
|
|
38
40
|
return if album_id.nil?
|
39
41
|
|
40
42
|
begin
|
41
|
-
fetch_album(album_id)
|
43
|
+
fetch_album(album_id)
|
42
44
|
rescue Exception => e
|
43
45
|
return nil
|
44
46
|
end
|
@@ -46,7 +48,7 @@ module SocialProfile
|
|
46
48
|
|
47
49
|
def find_or_create_album(album_id, options = {})
|
48
50
|
record = find_album(album_id)
|
49
|
-
record ||= album!(options)
|
51
|
+
record ||= album!(options)
|
50
52
|
record
|
51
53
|
end
|
52
54
|
|
@@ -78,4 +80,4 @@ module SocialProfile
|
|
78
80
|
nil
|
79
81
|
end
|
80
82
|
end
|
81
|
-
end
|
83
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require 'open-uri'
|
2
|
+
require 'json'
|
3
|
+
|
4
|
+
module SocialProfile
|
5
|
+
module RubyInstagramScraper
|
6
|
+
|
7
|
+
BASE_URL = "https://www.instagram.com"
|
8
|
+
|
9
|
+
def self.search ( query )
|
10
|
+
# return false unless query
|
11
|
+
|
12
|
+
url = "#{BASE_URL}/web/search/topsearch/"
|
13
|
+
params = "?query=#{ query }"
|
14
|
+
|
15
|
+
JSON.parse( open( "#{url}#{params}" ).read )
|
16
|
+
end
|
17
|
+
|
18
|
+
def self.get_user_media_nodes ( username, max_id = nil )
|
19
|
+
url = "#{BASE_URL}/#{ username }/media/"
|
20
|
+
params = ""
|
21
|
+
params = "?max_id=#{ max_id }" if max_id
|
22
|
+
|
23
|
+
JSON.parse( open( "#{url}#{params}" ).read )
|
24
|
+
end
|
25
|
+
|
26
|
+
def self.get_user ( username, max_id = nil )
|
27
|
+
url = "#{BASE_URL}/#{ username }/?__a=1"
|
28
|
+
params = ""
|
29
|
+
params = "&max_id=#{ max_id }" if max_id
|
30
|
+
|
31
|
+
JSON.parse( open( "#{url}#{params}" ).read )["user"]
|
32
|
+
end
|
33
|
+
|
34
|
+
def self.get_tag_media_nodes ( tag, max_id = nil )
|
35
|
+
url = "#{BASE_URL}/explore/tags/#{ tag }/?__a=1"
|
36
|
+
params = ""
|
37
|
+
params = "&max_id=#{ max_id }" if max_id
|
38
|
+
|
39
|
+
JSON.parse( open( "#{url}#{params}" ).read )["tag"]["media"]["nodes"]
|
40
|
+
end
|
41
|
+
|
42
|
+
def self.get_media ( code )
|
43
|
+
url = "#{BASE_URL}/p/#{ code }/?__a=1"
|
44
|
+
params = ""
|
45
|
+
|
46
|
+
JSON.parse( open( "#{url}#{params}" ).read )["media"]
|
47
|
+
end
|
48
|
+
|
49
|
+
def self.get_media_comments ( shortcode, count = 40, before = nil )
|
50
|
+
params = before.nil?? "comments.last(#{ count })" : "comments.before( #{ before } , #{count})"
|
51
|
+
url = "#{BASE_URL}/query/?q=ig_shortcode(#{ shortcode }){#{ params }\
|
52
|
+
{count,nodes{id,created_at,text,user{id,profile_pic_url,username,\
|
53
|
+
follows{count},followed_by{count},biography,full_name,media{count},\
|
54
|
+
is_private,external_url,is_verified}},page_info}}"
|
55
|
+
|
56
|
+
JSON.parse( open( url ).read )["comments"]
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
data/social_profile.gemspec
CHANGED
@@ -25,6 +25,7 @@ Gem::Specification.new do |spec|
|
|
25
25
|
spec.add_dependency "vkontakte", '~> 0.0.6'
|
26
26
|
spec.add_dependency "twitter", '~> 5.11.0'
|
27
27
|
spec.add_dependency "instagram", '~> 1.1.6'
|
28
|
+
spec.add_dependency "google-api-client", '~> 0.9.28'
|
28
29
|
spec.add_dependency "httpclient"
|
29
30
|
spec.add_dependency "multi_json"
|
30
31
|
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"kind": "youtube#channelListResponse",
|
3
|
+
"etag": "\"5C5HHOaBSHC5ZXfkrT4ZlRCi01A/5TZnktN-2853bEpB6smoAPvkrVY\"",
|
4
|
+
"pageInfo": {
|
5
|
+
"totalResults": 1,
|
6
|
+
"resultsPerPage": 1
|
7
|
+
},
|
8
|
+
"items": [
|
9
|
+
{
|
10
|
+
"kind": "youtube#channel",
|
11
|
+
"etag": "\"5C5HHOaBSHC5ZXfkrT4ZlRCi01A/xTkkPLn7g62ZUo6Ut3ltlQde5Qw\"",
|
12
|
+
"id": "UC8vMBMLcrLsmyGrhdZvIo4Q",
|
13
|
+
"statistics": {
|
14
|
+
"viewCount": "347",
|
15
|
+
"commentCount": "0",
|
16
|
+
"subscriberCount": "2",
|
17
|
+
"hiddenSubscriberCount": false,
|
18
|
+
"videoCount": "22"
|
19
|
+
}
|
20
|
+
}
|
21
|
+
]
|
22
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"status": "ok", "more_available": true, "items": [{"code": "BLmB2KqBjdx", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/c0.12.1080.1080/14726363_1029063437192405_3730274200036835328_n.jpg?ig_cache_key=MTM2MTc4NDA1NzY2Njg3NzI5Nw%3D%3D.2.c", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/c0.12.1080.1080/14726363_1029063437192405_3730274200036835328_n.jpg?ig_cache_key=MTM2MTc4NDA1NzY2Njg3NzI5Nw%3D%3D.2.c", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/c0.12.1080.1080/14726363_1029063437192405_3730274200036835328_n.jpg?ig_cache_key=MTM2MTc4NDA1NzY2Njg3NzI5Nw%3D%3D.2.c", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/BLmB2KqBjdx/", "comments": {"count": 2, "data": [{"text": "\u041a\u0440\u0430\u0441\u043e\u0442\u043a\u0430) )", "id": "17843821615134892", "from": {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, "created_time": "1476559003"}, {"text": "@ekaterinagaleta \u0437\u0430\u0442\u043e \u043f\u043e\u0440\u0436\u0430\u043b\u0438 \u0437 \u041b\u044c\u043e\u0448\u043a\u043e\u044e )", "id": "17843824573134892", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1476563508"}]}, "caption": {"text": "\u0423\u0440\u043e\u043a\u0438 \u043c\u0438\u0441\u0442\u0435\u0446\u0442\u0432\u0430", "id": "17843820565134892", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1476557331"}, "id": "1361784057666877297_31973911", "location": {"name": "Myronivka"}, "created_time": "1476557331", "likes": {"count": 25, "data": [{"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}, {"username": "marshrootka", "id": "18894534", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/16465701_1340929209301114_1371166101634809856_a.jpg", "full_name": "Masha Marshrootka"}, {"username": "aenimameow", "id": "280845252", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/15047970_1010120039098278_1483966713220300800_a.jpg", "full_name": "Kitty Alexeyeva"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "BJ2uUsmj4pL", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/14156606_184520985304224_1129545964_n.jpg?ig_cache_key=MTMzMDQ1NDQ3MjM1NTE4NzI3NQ%3D%3D.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/14156606_184520985304224_1129545964_n.jpg?ig_cache_key=MTMzMDQ1NDQ3MjM1NTE4NzI3NQ%3D%3D.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/14156606_184520985304224_1129545964_n.jpg?ig_cache_key=MTMzMDQ1NDQ3MjM1NTE4NzI3NQ%3D%3D.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/BJ2uUsmj4pL/", "comments": {"count": 3, "data": [{"text": "\u041a\u043e\u0434\u043e\u0432\u043e\u0435 \u0441\u043b\u043e\u0432\u043e?", "id": "17862105157039401", "from": {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, "created_time": "1472823078"}, {"text": "\u0418\u043b\u0438 \u043c\u043e\u043b\u043e\u043a\u043e \u0445\u043e\u0434\u043e\u0432\u043e\u0439 \u0442\u043e\u0432\u0430\u0440, \u0438\u043b\u0438 \u0432 \u043c\u0430\u0433\u0430\u0437\u0438\u043d\u0435 \u043a\u0442\u043e-\u0442\u043e \u043f\u0443\u0442\u0430\u0435\u0442 \u043e\u0442\u0434\u0435\u043b\u044b", "id": "17862105190039401", "from": {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, "created_time": "1472823159"}, {"text": "@ekaterinagaleta \u0445\u043e\u0434\u043e\u0432\u0438\u0439 \u0442\u043e\u0432\u0430\u0440, \u0431\u043e \u044f \u043a\u0443\u043f\u0438\u0432 \u043a\u0430\u043a\u0430\u043e. \u0410 \u043f\u043e\u043b\u043e\u0432\u0438\u043d\u0430 \u0446\u044c\u043e\u0433\u043e \u043f\u0438\u0432\u0430 \u0443\u0436\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u043e\u0447\u0435\u043d\u0435. \u0422\u0456\u043b\u044c\u043a\u0438 \u0432\u0456\u0441\u043a\u0456 \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u0435 \u0449\u0435 )", "id": "17862105250039401", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1472823296"}]}, "caption": {"text": "\u0417\u0430\u0433\u043b\u044f\u043d\u0443\u0432 \u0432 \u0445\u043e\u043b\u043e\u0434\u0438\u043b\u044c\u043d\u0438\u043a \u0437\u0430 \u043c\u043e\u043b\u043e\u0447\u043a\u043e\u043c", "id": "17862104959039401", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1472822554"}, "id": "1330454472355187275_31973911", "location": {"name": "Fodojo"}, "created_time": "1472822554", "likes": {"count": 14, "data": [{"username": "sergphotographer", "id": "2238255397", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/13534185_607018812799342_651050823_a.jpg", "full_name": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444 \u0421\u0435\u0440\u0433\u0435\u0439 \u041b\u044e\u043b\u044c\u043a\u0430"}, {"username": "jenya.krasnik", "id": "2377412598", "profile_picture": "https://scontent.cdninstagram.com/t51.2885-19/11906329_960233084022564_1448528159_a.jpg", "full_name": "Eugene"}, {"username": "vitaliimalets", "id": "205424350", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/10467824_246102795584003_1534907296_a.jpg", "full_name": "Vitaliy Malets"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "BDzkwK0PSAF", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/10632102_486978071494179_386996899_n.jpg?ig_cache_key=MTIyMTQ4MTU2Mzc3MDY1ODgyMQ%3D%3D.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/10632102_486978071494179_386996899_n.jpg?ig_cache_key=MTIyMTQ4MTU2Mzc3MDY1ODgyMQ%3D%3D.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/10632102_486978071494179_386996899_n.jpg?ig_cache_key=MTIyMTQ4MTU2Mzc3MDY1ODgyMQ%3D%3D.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/BDzkwK0PSAF/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u041a\u043e\u043b\u0438 \u0443 \u0442\u0435\u0431\u0435 40+ \u0434\u0435\u0440\u0435\u0432, \u0431\u0435\u0437 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0438 \u043d\u0435 \u043e\u0431\u0456\u0439\u0442\u0438\u0441\u044f.", "id": "17855699347031068", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1459831971"}, "id": "1221481563770658821_31973911", "location": {"name": "Myronivka"}, "created_time": "1459831971", "likes": {"count": 38, "data": [{"username": "wit.stk", "id": "1096104765", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11326442_1677814842440500_739245262_a.jpg", "full_name": "Wit Stk"}, {"username": "serg_evtushenko", "id": "310767589", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11909316_1611098845816358_648732393_a.jpg", "full_name": "\u0421\u0435\u0440\u0433\u0435\u0439 \u0415\u0432\u0442\u0443\u0448\u0435\u043d\u043a\u043e"}, {"username": "irina_komornaya", "id": "428099167", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11849263_1485901365064629_846289179_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u041a\u043e\u043c\u043e\u0440\u043d\u0430\u044f"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "BDstH0avSCR", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/12950446_213835785641921_1781435534_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12950446_213835785641921_1781435534_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/12950446_213835785641921_1781435534_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/BDstH0avSCR/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u0421\u0443\u0431\u043e\u0442\u0430, 3-\u0442\u044f \u0433\u043e\u0434\u0438\u043d\u0430 \u0434\u043d\u044f, \u0430\u043d\u0448\u043b\u0430\u0433.", "id": "17855788393003790", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1459601478"}, "id": "1219548048523075729_31973911", "location": {"name": "\u0413\u043e\u043d\u0447\u0430\u0440\u0456"}, "created_time": "1459601478", "likes": {"count": 16, "data": [{"username": "irina_komornaya", "id": "428099167", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11849263_1485901365064629_846289179_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u041a\u043e\u043c\u043e\u0440\u043d\u0430\u044f"}, {"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "BCx7fFXvSId", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/12783201_498330643708007_419750621_n.jpg?ig_cache_key=MTIwMzAwNDE5NjI5OTU0NzE2NQ%3D%3D.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12783201_498330643708007_419750621_n.jpg?ig_cache_key=MTIwMzAwNDE5NjI5OTU0NzE2NQ%3D%3D.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/12783201_498330643708007_419750621_n.jpg?ig_cache_key=MTIwMzAwNDE5NjI5OTU0NzE2NQ%3D%3D.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/BCx7fFXvSId/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u0421\u0456\u043c\u0435\u0439\u043d\u0456 \u043f\u043e\u0434\u0430\u0440\u0443\u043d\u043a\u0438 \u043d\u0430\u0439\u043a\u0440\u0430\u0449\u0456 #\u0441\u043a\u043e\u0440\u043e30", "id": "17853798820022487", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1457629297"}, "id": "1203004196299547165_31973911", "location": null, "created_time": "1457629297", "likes": {"count": 14, "data": [{"username": "a_vatskel", "id": "288693527", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/10919087_819066664824207_63453861_a.jpg", "full_name": "Anastasia Vatskel"}, {"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}, {"username": "sasha_zik", "id": "12015599", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11356511_420469374800181_859776400_a.jpg", "full_name": "\u0421\u0430\u0448\u0430 \u0422\u0430\u0440\u0430\u0441\u0435\u043d\u043a\u043e"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "BCqgh_LvSO1", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/12141815_1703342236609269_205403115_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12141815_1703342236609269_205403115_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/12141815_1703342236609269_205403115_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/BCqgh_LvSO1/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u041c\u0456\u043d\u0456 \u0444\u0430\u0431\u0440\u0438\u043a\u0430 \u0446\u0443\u043a\u0435\u0440\u043e\u043a #roshen", "id": "17853864412037392", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1457380284"}, "id": "1200915323721425845_31973911", "location": null, "created_time": "1457380284", "likes": {"count": 6, "data": [{"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, {"username": "marisabel_zz", "id": "1509831327", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/13266919_133486223721983_2063368948_a.jpg", "full_name": "\u041c\u0430\u0440\u0438\u043d\u0430 \u041b\u044f\u0445"}, {"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "BAPIQVLPSJL", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/1527600_455123324694331_1676824127_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/1527600_455123324694331_1676824127_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/1527600_455123324694331_1676824127_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/BAPIQVLPSJL/", "comments": {"count": 0, "data": []}, "caption": {"text": "Snow fashion", "id": "17857405153011478", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1452166619"}, "id": "1157179935878357579_31973911", "location": {"name": "Myronivka"}, "created_time": "1452166619", "likes": {"count": 13, "data": [{"username": "rehetep", "id": "48396187", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821312_954567234584942_144770903_a.jpg", "full_name": "rehetep"}, {"username": "marisabel_zz", "id": "1509831327", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/13266919_133486223721983_2063368948_a.jpg", "full_name": "\u041c\u0430\u0440\u0438\u043d\u0430 \u041b\u044f\u0445"}, {"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, {"username": "komashka_o", "id": "344925642", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14607057_1300167070017209_5432311018648764416_a.jpg", "full_name": "\u0415\u043b\u0435\u043d\u0430 \u041a\u043e\u043c\u0430\u0448\u043a\u043e"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "__uOmQvSKt", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/12394063_452475581604330_1928836158_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12394063_452475581604330_1928836158_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/12394063_452475581604330_1928836158_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/__uOmQvSKt/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u041f\u0440\u043e\u0446\u0435\u0441 \u0440\u043e\u0437\u043f\u0430\u043a\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u043e\u0434\u0430\u0440\u0443\u043d\u043a\u0456\u0432 \u0431\u0443\u0432 \u0434\u043e\u0432\u0433\u0438\u043c", "id": "17853190444029090", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1451649657"}, "id": "1152843342925341357_31973911", "location": {"name": "Myronivka"}, "created_time": "1451649657", "likes": {"count": 10, "data": [{"username": "gubish", "id": "1013746", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/10665464_1486816188246619_540969972_a.jpg", "full_name": "Aleksey Gubsky"}, {"username": "sergey.pontus", "id": "205965307", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/13402697_1754287011523030_755457426_a.jpg", "full_name": "Sergey Pontus"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, {"username": "rita_kuczer", "id": "1208249987", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/10570236_791449254271137_190182427_a.jpg", "full_name": "Rita Kucher"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "9yU4bOvSJ-", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/12231041_1003762189674923_2116127513_n.jpg?ig_cache_key=MTExMzA0Mzg5NjM3MzE1ODUyNg%3D%3D.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12231041_1003762189674923_2116127513_n.jpg?ig_cache_key=MTExMzA0Mzg5NjM3MzE1ODUyNg%3D%3D.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/12231041_1003762189674923_2116127513_n.jpg?ig_cache_key=MTExMzA0Mzg5NjM3MzE1ODUyNg%3D%3D.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/9yU4bOvSJ-/", "comments": {"count": 3, "data": [{"text": "\u041a\u043e\u043b\u0438 \u0442\u0432\u043e\u044e \u0442\u0430\u043a\u0443 \u043f\u043e\u0431\u0430\u0447\u0438\u043c\u043e?))", "id": "17845136824055710", "from": {"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, "created_time": "1446912459"}, {"text": "@kirstokovsky \u043d\u0456\u043a\u043e\u043b\u0438, \u044f \u043d\u0435 \u0444\u0430\u043d\u0430\u0442 \u0442\u0430\u043a\u0438\u0445 \u0444\u0456\u0437\u0438\u0447\u043d\u0438\u0445 \u043c\u0443\u043a \u0441\u0432\u043e\u0433\u043e \u043e\u0440\u0433\u0430\u043d\u0456\u0437\u043c\u0443", "id": "17845137652055710", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1446913727"}, {"text": "\ud83d\ude04", "id": "17845138612055710", "from": {"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, "created_time": "1446915050"}]}, "caption": {"text": "\u0412\u0437\u044f\u0432 150 \u043a\u0433, \u0437\u0430\u0439\u043d\u044f\u0432 \u043f\u0435\u0440\u0448\u0435 \u043c\u0456\u0441\u0446\u0435 \u0443 \u0441\u0432\u043e\u0457\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457. #\u043c\u0456\u0439\u043f\u0430\u043f\u0430\u0441\u0430\u043c\u0438\u0439\u0441\u0438\u043b\u044c\u043d\u0438\u0439", "id": "17852700883055710", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1446905193"}, "id": "1113043896373158526_31973911", "location": {"name": "\u0421\u041a \u041c\u0435\u0440\u0438\u0434\u0438\u0430\u043d"}, "created_time": "1446905193", "likes": {"count": 10, "data": [{"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, {"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}, {"username": "irina_komornaya", "id": "428099167", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11849263_1485901365064629_846289179_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u041a\u043e\u043c\u043e\u0440\u043d\u0430\u044f"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "9O35ScvSIv", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/12144171_171652909846005_1021399292_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12144171_171652909846005_1021399292_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/12144171_171652909846005_1021399292_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/9O35ScvSIv/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u041b\u0456\u0437\u0430, \u0432\u0438\u0431\u0430\u0447, \u0430\u043b\u0435 \u0442\u0438 \u043d\u0430\u0439\u043a\u0440\u0443\u0442\u0456\u0448\u0430 \u0456\u0433\u0440\u0430\u0448\u043a\u0430 \u0441\u044c\u043e\u0433\u043e\u0434\u043d\u0456", "id": "17852155537037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1445715591"}, "id": "1103064788130144815_31973911", "location": null, "created_time": "1445715591", "likes": {"count": 16, "data": [{"username": "rita_kuczer", "id": "1208249987", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/10570236_791449254271137_190182427_a.jpg", "full_name": "Rita Kucher"}, {"username": "marisabel_zz", "id": "1509831327", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/13266919_133486223721983_2063368948_a.jpg", "full_name": "\u041c\u0430\u0440\u0438\u043d\u0430 \u041b\u044f\u0445"}, {"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "komashka_o", "id": "344925642", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14607057_1300167070017209_5432311018648764416_a.jpg", "full_name": "\u0415\u043b\u0435\u043d\u0430 \u041a\u043e\u043c\u0430\u0448\u043a\u043e"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "9O3QjkvSHE", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/10665529_1511707165788571_854393418_n.jpg?ig_cache_key=MTEwMzA2MTk4OTAxOTQyNzI2OA%3D%3D.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/10665529_1511707165788571_854393418_n.jpg?ig_cache_key=MTEwMzA2MTk4OTAxOTQyNzI2OA%3D%3D.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/10665529_1511707165788571_854393418_n.jpg?ig_cache_key=MTEwMzA2MTk4OTAxOTQyNzI2OA%3D%3D.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/9O3QjkvSHE/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u0423\u0447\u0443 \u0437 \u043c\u0430\u043b\u0435\u0447\u043a\u0443, \u0449\u043e \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u043e \u0440\u043e\u0431\u0438\u0442\u0438 \u0456\u0437 \u0436\u0443\u0440\u043d\u0430\u043b\u043e\u043c \u041b\u0456\u0437\u0430. #noglamour", "id": "17852155528037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1445715257"}, "id": "1103061989019427268_31973911", "location": null, "created_time": "1445715257", "likes": {"count": 9, "data": [{"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, {"username": "marisabel_zz", "id": "1509831327", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/13266919_133486223721983_2063368948_a.jpg", "full_name": "\u041c\u0430\u0440\u0438\u043d\u0430 \u041b\u044f\u0445"}, {"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "komashka_o", "id": "344925642", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14607057_1300167070017209_5432311018648764416_a.jpg", "full_name": "\u0415\u043b\u0435\u043d\u0430 \u041a\u043e\u043c\u0430\u0448\u043a\u043e"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "80zdzbPSMR", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/12080663_1500546780243064_465120260_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12080663_1500546780243064_465120260_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/12080663_1500546780243064_465120260_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/80zdzbPSMR/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u041f\u0440\u043e\u0449\u0430\u043d\u043d\u044f \u0456\u0437 \u043b\u0456\u0442\u043d\u0456\u043c\u0438 \u0444\u0440\u0435\u043d\u0434\u0430\u043c\u0438", "id": "17852151454037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1444840853"}, "id": "1095726957812589329_31973911", "location": null, "created_time": "1444840853", "likes": {"count": 9, "data": [{"username": "irina_komornaya", "id": "428099167", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11849263_1485901365064629_846289179_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u041a\u043e\u043c\u043e\u0440\u043d\u0430\u044f"}, {"username": "komashka_o", "id": "344925642", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14607057_1300167070017209_5432311018648764416_a.jpg", "full_name": "\u0415\u043b\u0435\u043d\u0430 \u041a\u043e\u043c\u0430\u0448\u043a\u043e"}, {"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "8AmWH5PSG2", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/11934697_1495954427395982_1721926377_n.jpg?ig_cache_key=MTA4MTAzMjU1NjY0MTMyOTU5MA%3D%3D.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/11934697_1495954427395982_1721926377_n.jpg?ig_cache_key=MTA4MTAzMjU1NjY0MTMyOTU5MA%3D%3D.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/11934697_1495954427395982_1721926377_n.jpg?ig_cache_key=MTA4MTAzMjU1NjY0MTMyOTU5MA%3D%3D.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/8AmWH5PSG2/", "comments": {"count": 1, "data": [{"text": "\u041f\u043e\u0440\u0430 \u044d\u0442\u043e \u0432\u0441\u0435 \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0430\u0442\u044c", "id": "17843868505037912", "from": {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, "created_time": "1443091388"}]}, "caption": {"text": "\u0412\u0430\u043b\u0456\u043a \u0442\u0430 \u044f - \u0434\u0440\u0443\u0437\u0456 \u043d\u0430\u0432\u0441\u0456\u0433\u0434\u0430! #\u0432\u0454\u0447\u043d\u0438\u0439\u0440\u0435\u043c\u043e\u043d\u0442 #\u043d\u0435\u043c\u0430\u0441\u0432\u0456\u0442\u043b\u0430\u0432\u043a\u0456\u043d\u0446\u0456\u0442\u0443\u043d\u0435\u043b\u044e", "id": "17852143192037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1443089144"}, "id": "1081032556641329590_31973911", "location": null, "created_time": "1443089144", "likes": {"count": 7, "data": [{"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, {"username": "komashka_o", "id": "344925642", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14607057_1300167070017209_5432311018648764416_a.jpg", "full_name": "\u0415\u043b\u0435\u043d\u0430 \u041a\u043e\u043c\u0430\u0448\u043a\u043e"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, {"username": "irina_komornaya", "id": "428099167", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11849263_1485901365064629_846289179_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u041a\u043e\u043c\u043e\u0440\u043d\u0430\u044f"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "7z9EMyPSKF", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e35/11887225_605057042959327_149014090_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/11887225_605057042959327_149014090_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e35/11887225_605057042959327_149014090_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/7z9EMyPSKF/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u0422\u043e\u0439 \u043c\u043e\u043c\u0435\u043d\u0442, \u043a\u043e\u043b\u0438 \u0443 \u0442\u0435\u0431\u0435 \u043d\u0435\u043c\u0430\u0454 \u0446\u0438\u0440\u043a\u0443\u043b\u044f, \u0430 \u0443 \u0431\u0430\u0442\u044c\u043a\u0430 \u0454 \u0434\u0432\u0430 \u0431\u043b\u0456\u043d\u0438.", "id": "17852141059037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1442664848"}, "id": "1077473305314534021_31973911", "location": null, "created_time": "1442664848", "likes": {"count": 3, "data": [{"username": "rynusya", "id": "693691187", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/12120271_459331997584325_993905331_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u0410\u043d\u0443\u0440\u0438\u043d\u0430"}, {"username": "sasha_zik", "id": "12015599", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11356511_420469374800181_859776400_a.jpg", "full_name": "\u0421\u0430\u0448\u0430 \u0422\u0430\u0440\u0430\u0441\u0435\u043d\u043a\u043e"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "3mLLhuvSBt", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e15/11380278_811364065620997_618336651_n.jpg?ig_cache_key=MTAwMTUzNzEzNzc4MDAwNzAyMQ%3D%3D.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e15/11380278_811364065620997_618336651_n.jpg?ig_cache_key=MTAwMTUzNzEzNzc4MDAwNzAyMQ%3D%3D.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e15/11380278_811364065620997_618336651_n.jpg?ig_cache_key=MTAwMTUzNzEzNzc4MDAwNzAyMQ%3D%3D.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/3mLLhuvSBt/", "comments": {"count": 6, "data": [{"text": "\u0422\u043e \u0446\u0435 \u0442\u0438 \u0437 \u043f\u0435\u0440\u0448\u043e\u043a\u043b\u0430\u0441\u043d\u0438\u043a\u0430\u043c\u0438 \u0433\u0440\u0430\u0432? \ud83d\ude04\ud83d\ude04", "id": "17852010142037912", "from": {"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, "created_time": "1433724463"}, {"text": "@kirstokovsky \u0432 \u0440\u0430\u0437\u043d\u043e\u0431\u043e\u0439, \u0432\u0456\u0434 7-\u043c\u0438 \u0434\u043e 40-\u043a\u0430", "id": "17852010529037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1433740018"}, {"text": "\u0425\u043e\u0447 \u0432\u0438\u0433\u0440\u0430\u043b\u0438?", "id": "17852011336037912", "from": {"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, "created_time": "1433789686"}, {"text": "@kirstokovsky \u0441\u0430\u043c\u043e \u0441\u043e\u0431\u043e\u044e", "id": "17852011510037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1433794553"}]}, "caption": {"text": "\u042f\u043a \u0434\u043e\u0431\u0440\u0435, \u043a\u043e\u043b\u0438 \u043f\u0456\u0441\u043b\u044f \u0444\u0443\u0442\u0431\u043e\u043b\u0443 \u0432\u0434\u043e\u043c\u0430 \u0447\u0435\u043a\u0430\u0454 \u0442\u0430\u043a\u0438\u0439 \u043f\u043e\u043c\u0456\u0447\u043d\u0438\u043a :)", "id": "17852008354037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1433612552"}, "id": "1001537137780007021_31973911", "location": null, "created_time": "1433612552", "likes": {"count": 9, "data": [{"username": "gubish", "id": "1013746", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/10665464_1486816188246619_540969972_a.jpg", "full_name": "Aleksey Gubsky"}, {"username": "sasha_zik", "id": "12015599", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11356511_420469374800181_859776400_a.jpg", "full_name": "\u0421\u0430\u0448\u0430 \u0422\u0430\u0440\u0430\u0441\u0435\u043d\u043a\u043e"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}, {"username": "juriy1", "id": "31933990", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/16583208_627925740720485_3036092427124342784_a.jpg", "full_name": "Yuriy Kolomuyets"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "27zRm2PSO4", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e15/11288070_1599033930381828_1016635286_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e15/11288070_1599033930381828_1016635286_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e15/11288070_1599033930381828_1016635286_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/27zRm2PSO4/", "comments": {"count": 2, "data": [{"text": "\u0418 \u043a\u0430\u043a?", "id": "17851987333037912", "from": {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, "created_time": "1432191914"}, {"text": "@ekaterinagaleta \u041f\u043e\u0442\u0440\u0456\u0431\u043d\u043e \u043a\u0443\u043f\u0438\u0442\u0438 \u043f\u0440\u043e\u0442\u0456\u0432\u043e\u0433\u0430\u0437. \u041f\u043e\u043b\u043e\u0432\u0438\u043d\u0443 \u043a\u043d\u0438\u0433\u0438 \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0432, \u0430 \u0434\u0430\u043b\u0456 \u0443\u0436\u0435 \u0432\u0430\u0436\u043a\u043e \u043a\u043e\u043d\u0446\u0435\u043d\u0442\u0440\u0443\u0432\u0430\u0442\u0438\u0441\u044c - \u0441\u0438\u0434\u0438\u043c\u043e \u044f\u043a \u0448\u043f\u0440\u043e\u0442\u0438 \u0432 \u043a\u043e\u043d\u0446\u0435\u0440\u0432\u043d\u0456\u0439 \u0431\u0430\u043d\u0446\u0456 )", "id": "17851987336037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1432192116"}]}, "caption": {"text": "\u0412\u0438\u0439\u0448\u043e\u0432 \u0437\u0430 \u0440\u0430\u043c\u043a\u0438 \u043a\u043e\u043c\u0444\u043e\u0440\u0442\u0443. #\u0435\u043b\u0435\u043a\u0442\u0440\u0438\u0447\u043a\u0430\u0447\u0435\u043b\u0435\u043d\u0434\u0436", "id": "17851987324037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1432190733"}, "id": "989610053453292472_31973911", "location": null, "created_time": "1432190733", "likes": {"count": 6, "data": [{"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, {"username": "irina_komornaya", "id": "428099167", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11849263_1485901365064629_846289179_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u041a\u043e\u043c\u043e\u0440\u043d\u0430\u044f"}, {"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "2RPmPlvSKN", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e15/11190782_1587369488171948_60279262_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e15/11190782_1587369488171948_60279262_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e15/11190782_1587369488171948_60279262_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/2RPmPlvSKN/", "comments": {"count": 3, "data": [{"text": "\u041a\u043e\u043b\u0438 \u043c\u0430\u043a\u0431\u0443\u043a\u0438, \u0447\u0438 \u0430\u0439\u0444\u043e\u043d\u0438 \u043f\u043e\u0441\u043f\u0456\u044e\u0442\u044c? \ud83d\ude00", "id": "17851965343037912", "from": {"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, "created_time": "1430856600"}, {"text": "@kirstokovsky, \u043d\u0430 \u0446\u044c\u043e\u043c\u0443 \u0434\u0435\u0440\u0435\u0432\u0456 \u043d\u0430\u0432\u0456\u0442\u044c \u044f\u0431\u043b\u0443\u043a\u0430 \u043d\u0435 \u043f\u0440\u0438\u0434\u0430\u0442\u043d\u0456 \u0434\u043e \u0432\u0436\u0438\u0432\u0430\u043d\u043d\u044f, \u0430 \u0442\u0438 \u043f\u0440\u043e \u043c\u0430\u043a\u0431\u0443\u043a\u0438 \u0437\u0430\u0440\u044f\u0434\u0438\u0432...", "id": "17851965424037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1430859636"}, {"text": "\ud83d\ude04\ud83d\ude04 \u0442\u043e \u0441\u0442\u0430\u0432 \u043e\u0445\u043e\u0440\u043e\u043d\u0443.", "id": "17851967101037912", "from": {"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, "created_time": "1430981508"}]}, "caption": {"text": "#noeffect #appletree", "id": "17851963693037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1430762741"}, "id": "977631192893170317_31973911", "location": null, "created_time": "1430762741", "likes": {"count": 12, "data": [{"username": "a_vatskel", "id": "288693527", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/10919087_819066664824207_63453861_a.jpg", "full_name": "Anastasia Vatskel"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}, {"username": "irina_komornaya", "id": "428099167", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11849263_1485901365064629_846289179_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u041a\u043e\u043c\u043e\u0440\u043d\u0430\u044f"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "1TnQyLPSCw", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e15/11117157_829335127144285_1945914838_n.jpg?ig_cache_key=OTYwMjgzODIyNzYxMjU1MDg4.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e15/11117157_829335127144285_1945914838_n.jpg?ig_cache_key=OTYwMjgzODIyNzYxMjU1MDg4.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e15/11117157_829335127144285_1945914838_n.jpg?ig_cache_key=OTYwMjgzODIyNzYxMjU1MDg4.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/1TnQyLPSCw/", "comments": {"count": 2, "data": [{"text": "\u0422\u043e \u043a\u043e\u043b\u0438 \u0441\u0442\u043e\u043b\u0430 \u0437\u0430\u043c\u043e\u0432\u0438\u0442\u0438 \u043c\u043e\u0436\u043d\u0430?))", "id": "17851927669037912", "from": {"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, "created_time": "1428846512"}, {"text": "\u0429\u0435 \u043d\u0435 \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0430\u0432 \u0434\u043e \u0434\u0435\u0440\u0435\u0432\u0430, \u0442\u0456\u043b\u044c\u043a\u0438 \u043f\u043e \u0437\u0430\u043b\u0456\u0437\u043d\u043e\u043c\u0443 \u043f\u0440\u043e\u0444\u0456\u043b\u044e \u043f\u0440\u0430\u043a\u0442\u0438\u043a\u0443\u044e\u0441\u044c", "id": "17851928005037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1428856030"}]}, "caption": {"text": "\u041a\u043e\u043b\u0438 \u043d\u0435\u043c\u0430\u0454 \u043d\u0430\u0432\u0443\u0448\u043d\u0438\u043a\u0456\u0432 \u0456 \u0432\u0430\u0442\u0438, \u0430\u043b\u0435 \u0454 \u0448\u0430\u043f\u043a\u0430 \u0456 \u0431\u0443\u043c\u0430\u0433\u0430", "id": "17851924384037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1428694773"}, "id": "960283822761255088_31973911", "location": null, "created_time": "1428694773", "likes": {"count": 16, "data": [{"username": "marisabel_zz", "id": "1509831327", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/13266919_133486223721983_2063368948_a.jpg", "full_name": "\u041c\u0430\u0440\u0438\u043d\u0430 \u041b\u044f\u0445"}, {"username": "sasha_zik", "id": "12015599", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11356511_420469374800181_859776400_a.jpg", "full_name": "\u0421\u0430\u0448\u0430 \u0422\u0430\u0440\u0430\u0441\u0435\u043d\u043a\u043e"}, {"username": "mariwa_rom", "id": "843606218", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/12424368_483738585132143_494606647_a.jpg", "full_name": "Marina"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "zk8QHcvSAy", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e15/10986121_685175058258838_1406922881_n.jpg", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e15/10986121_685175058258838_1406922881_n.jpg", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e15/10986121_685175058258838_1406922881_n.jpg", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/zk8QHcvSAy/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u041f\u043e\u043b\u0456\u0437 \u0443\u043a\u0440\u043e\u043f\u0447\u0438\u043a", "id": "17851858468037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1424981236"}, "id": "929132413445808178_31973911", "location": null, "created_time": "1424981236", "likes": {"count": 8, "data": [{"username": "kirstokovsky", "id": "262260429", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11370994_538666132949244_1844000833_a.jpg", "full_name": "Kirill Stokovsky"}, {"username": "komashka_o", "id": "344925642", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14607057_1300167070017209_5432311018648764416_a.jpg", "full_name": "\u0415\u043b\u0435\u043d\u0430 \u041a\u043e\u043c\u0430\u0448\u043a\u043e"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}, {"code": "xXKjkqvSM3", "images": {"thumbnail": {"width": 150, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s150x150/e15/10881979_360277300811098_1063580254_n.jpg?ig_cache_key=ODg5MjI1ODc2NDQ3NTAzMTU5.2", "height": 150}, "standard_resolution": {"width": 640, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e15/10881979_360277300811098_1063580254_n.jpg?ig_cache_key=ODg5MjI1ODc2NDQ3NTAzMTU5.2", "height": 640}, "low_resolution": {"width": 320, "url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s320x320/e15/10881979_360277300811098_1063580254_n.jpg?ig_cache_key=ODg5MjI1ODc2NDQ3NTAzMTU5.2", "height": 320}}, "can_view_comments": true, "link": "https://www.instagram.com/p/xXKjkqvSM3/", "comments": {"count": 0, "data": []}, "caption": {"text": "\u041d\u0430\u0439\u0432\u0430\u0436\u0447\u0438\u0439 \u0456\u0441\u043f\u0438\u0442 ever, \u043f\u043e\u043a\u043b\u0435\u0457\u0442\u0438 \u0440\u0430\u0437\u043e\u043c \u0448\u043f\u0430\u043b\u0435\u0440\u0438, - done!", "id": "17851769950037912", "from": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "created_time": "1420224006"}, "id": "889225876447503159_31973911", "location": null, "created_time": "1420224006", "likes": {"count": 12, "data": [{"username": "olkin_ilina", "id": "523900597", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/11821926_797587310356775_1035973940_a.jpg", "full_name": "\u041e\u043b\u044c\u0433\u0430"}, {"username": "rynusya", "id": "693691187", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/12120271_459331997584325_993905331_a.jpg", "full_name": "\u0418\u0440\u0438\u043d\u0430 \u0410\u043d\u0443\u0440\u0438\u043d\u0430"}, {"username": "ekaterinagaleta", "id": "1427310304", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/11337150_1453053224997934_98231483_a.jpg", "full_name": "Ekaterina Galeta"}, {"username": "talita_t", "id": "574888417", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/1390440_866824990096281_1355490963_a.jpg", "full_name": "Tatiana Oleynik"}]}, "user": {"username": "pavel_galeta", "id": "31973911", "profile_picture": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "full_name": "pavel galeta"}, "alt_media_url": null, "type": "image", "can_delete_comments": false}]}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"user": {"country_block": false, "biography": null, "id": "31973911", "followed_by": {"count": 93}, "follows_viewer": false, "full_name": "pavel galeta", "profile_pic_url": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s150x150/14709646_1226262884100860_5021834891021516800_a.jpg", "profile_pic_url_hd": "https://scontent-fra3-1.cdninstagram.com/t51.2885-19/s320x320/14709646_1226262884100860_5021834891021516800_a.jpg", "followed_by_viewer": false, "has_blocked_viewer": false, "external_url": null, "is_private": false, "requested_by_viewer": false, "blocked_by_viewer": false, "username": "pavel_galeta", "media": {"nodes": [{"date": 1476557331, "likes": {"count": 25}, "id": "1361784057666877297", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/14726363_1029063437192405_3730274200036835328_n.jpg?ig_cache_key=MTM2MTc4NDA1NzY2Njg3NzI5Nw%3D%3D.2", "is_video": false, "comments": {"count": 2}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1104, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/c0.12.1080.1080/14726363_1029063437192405_3730274200036835328_n.jpg?ig_cache_key=MTM2MTc4NDA1NzY2Njg3NzI5Nw%3D%3D.2.c", "caption": "\u0423\u0440\u043e\u043a\u0438 \u043c\u0438\u0441\u0442\u0435\u0446\u0442\u0432\u0430", "code": "BLmB2KqBjdx"}, {"date": 1472822554, "likes": {"count": 14}, "id": "1330454472355187275", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/14156606_184520985304224_1129545964_n.jpg?ig_cache_key=MTMzMDQ1NDQ3MjM1NTE4NzI3NQ%3D%3D.2", "is_video": false, "comments": {"count": 3}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/14156606_184520985304224_1129545964_n.jpg?ig_cache_key=MTMzMDQ1NDQ3MjM1NTE4NzI3NQ%3D%3D.2", "caption": "\u0417\u0430\u0433\u043b\u044f\u043d\u0443\u0432 \u0432 \u0445\u043e\u043b\u043e\u0434\u0438\u043b\u044c\u043d\u0438\u043a \u0437\u0430 \u043c\u043e\u043b\u043e\u0447\u043a\u043e\u043c", "code": "BJ2uUsmj4pL"}, {"date": 1459831971, "likes": {"count": 38}, "id": "1221481563770658821", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/10632102_486978071494179_386996899_n.jpg?ig_cache_key=MTIyMTQ4MTU2Mzc3MDY1ODgyMQ%3D%3D.2", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/10632102_486978071494179_386996899_n.jpg?ig_cache_key=MTIyMTQ4MTU2Mzc3MDY1ODgyMQ%3D%3D.2", "caption": "\u041a\u043e\u043b\u0438 \u0443 \u0442\u0435\u0431\u0435 40+ \u0434\u0435\u0440\u0435\u0432, \u0431\u0435\u0437 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u0438 \u043d\u0435 \u043e\u0431\u0456\u0439\u0442\u0438\u0441\u044f.", "code": "BDzkwK0PSAF"}, {"date": 1459601478, "likes": {"count": 16}, "id": "1219548048523075729", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/12950446_213835785641921_1781435534_n.jpg", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12950446_213835785641921_1781435534_n.jpg", "caption": "\u0421\u0443\u0431\u043e\u0442\u0430, 3-\u0442\u044f \u0433\u043e\u0434\u0438\u043d\u0430 \u0434\u043d\u044f, \u0430\u043d\u0448\u043b\u0430\u0433.", "code": "BDstH0avSCR"}, {"date": 1457629297, "likes": {"count": 14}, "id": "1203004196299547165", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/12783201_498330643708007_419750621_n.jpg?ig_cache_key=MTIwMzAwNDE5NjI5OTU0NzE2NQ%3D%3D.2", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12783201_498330643708007_419750621_n.jpg?ig_cache_key=MTIwMzAwNDE5NjI5OTU0NzE2NQ%3D%3D.2", "caption": "\u0421\u0456\u043c\u0435\u0439\u043d\u0456 \u043f\u043e\u0434\u0430\u0440\u0443\u043d\u043a\u0438 \u043d\u0430\u0439\u043a\u0440\u0430\u0449\u0456 #\u0441\u043a\u043e\u0440\u043e30", "code": "BCx7fFXvSId"}, {"date": 1457380284, "likes": {"count": 6}, "id": "1200915323721425845", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/12141815_1703342236609269_205403115_n.jpg", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12141815_1703342236609269_205403115_n.jpg", "caption": "\u041c\u0456\u043d\u0456 \u0444\u0430\u0431\u0440\u0438\u043a\u0430 \u0446\u0443\u043a\u0435\u0440\u043e\u043a #roshen", "code": "BCqgh_LvSO1"}, {"date": 1452166619, "likes": {"count": 13}, "id": "1157179935878357579", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/1527600_455123324694331_1676824127_n.jpg", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/1527600_455123324694331_1676824127_n.jpg", "caption": "Snow fashion", "code": "BAPIQVLPSJL"}, {"date": 1451649657, "likes": {"count": 10}, "id": "1152843342925341357", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/12394063_452475581604330_1928836158_n.jpg", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12394063_452475581604330_1928836158_n.jpg", "caption": "\u041f\u0440\u043e\u0446\u0435\u0441 \u0440\u043e\u0437\u043f\u0430\u043a\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u043e\u0434\u0430\u0440\u0443\u043d\u043a\u0456\u0432 \u0431\u0443\u0432 \u0434\u043e\u0432\u0433\u0438\u043c", "code": "__uOmQvSKt"}, {"date": 1446905193, "likes": {"count": 10}, "id": "1113043896373158526", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/12231041_1003762189674923_2116127513_n.jpg?ig_cache_key=MTExMzA0Mzg5NjM3MzE1ODUyNg%3D%3D.2", "is_video": false, "comments": {"count": 3}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12231041_1003762189674923_2116127513_n.jpg?ig_cache_key=MTExMzA0Mzg5NjM3MzE1ODUyNg%3D%3D.2", "caption": "\u0412\u0437\u044f\u0432 150 \u043a\u0433, \u0437\u0430\u0439\u043d\u044f\u0432 \u043f\u0435\u0440\u0448\u0435 \u043c\u0456\u0441\u0446\u0435 \u0443 \u0441\u0432\u043e\u0457\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0456\u0457. #\u043c\u0456\u0439\u043f\u0430\u043f\u0430\u0441\u0430\u043c\u0438\u0439\u0441\u0438\u043b\u044c\u043d\u0438\u0439", "code": "9yU4bOvSJ-"}, {"date": 1445715591, "likes": {"count": 16}, "id": "1103064788130144815", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/12144171_171652909846005_1021399292_n.jpg", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12144171_171652909846005_1021399292_n.jpg", "caption": "\u041b\u0456\u0437\u0430, \u0432\u0438\u0431\u0430\u0447, \u0430\u043b\u0435 \u0442\u0438 \u043d\u0430\u0439\u043a\u0440\u0443\u0442\u0456\u0448\u0430 \u0456\u0433\u0440\u0430\u0448\u043a\u0430 \u0441\u044c\u043e\u0433\u043e\u0434\u043d\u0456", "code": "9O35ScvSIv"}, {"date": 1445715257, "likes": {"count": 9}, "id": "1103061989019427268", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/10665529_1511707165788571_854393418_n.jpg?ig_cache_key=MTEwMzA2MTk4OTAxOTQyNzI2OA%3D%3D.2", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/10665529_1511707165788571_854393418_n.jpg?ig_cache_key=MTEwMzA2MTk4OTAxOTQyNzI2OA%3D%3D.2", "caption": "\u0423\u0447\u0443 \u0437 \u043c\u0430\u043b\u0435\u0447\u043a\u0443, \u0449\u043e \u043f\u043e\u0442\u0440\u0456\u0431\u043d\u043e \u0440\u043e\u0431\u0438\u0442\u0438 \u0456\u0437 \u0436\u0443\u0440\u043d\u0430\u043b\u043e\u043c \u041b\u0456\u0437\u0430. #noglamour", "code": "9O3QjkvSHE"}, {"date": 1444840853, "likes": {"count": 9}, "id": "1095726957812589329", "display_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/e35/12080663_1500546780243064_465120260_n.jpg", "is_video": false, "comments": {"count": 0}, "__typename": "GraphImage", "owner": {"id": "31973911"}, "comments_disabled": false, "dimensions": {"height": 1080, "width": 1080}, "thumbnail_src": "https://scontent-fra3-1.cdninstagram.com/t51.2885-15/s640x640/sh0.08/e35/12080663_1500546780243064_465120260_n.jpg", "caption": "\u041f\u0440\u043e\u0449\u0430\u043d\u043d\u044f \u0456\u0437 \u043b\u0456\u0442\u043d\u0456\u043c\u0438 \u0444\u0440\u0435\u043d\u0434\u0430\u043c\u0438", "code": "80zdzbPSMR"}], "page_info": {"has_next_page": true, "end_cursor": "AQDLq0KxVtT7QnZ4hTkTF9EXPTziHog3IObEpGOoC4CAgz2mIZznuoZo4UhK0fkwtw5cmU7u2LYpGB3OI67bjm3VstgfvzUiPqikym8e2MFj9wjbU3-3iM8SkH248N2U9FY"}, "count": 97}, "has_requested_viewer": false, "follows": {"count": 99}, "external_url_linkshimmed": null, "connected_fb_page": null, "is_verified": false}, "logging_page_id": "profilePage_31973911"}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe SocialProfile::People::Google do
|
4
|
+
it "should be a Module" do
|
5
|
+
SocialProfile::People::Google.should be_a(Module)
|
6
|
+
end
|
7
|
+
|
8
|
+
context "google" do
|
9
|
+
before(:each) do
|
10
|
+
@user = SocialProfile::Person.get(:google, "123456", "abc")
|
11
|
+
|
12
|
+
stub_request(:get, "https://www.googleapis.com/youtube/v3/channels?mine=true&part=statistics").
|
13
|
+
to_return(:status => 200, :body => fixture('google/channels.json'))
|
14
|
+
end
|
15
|
+
|
16
|
+
it "should be a google profile" do
|
17
|
+
@user.should be_a(SocialProfile::People::Google)
|
18
|
+
end
|
19
|
+
|
20
|
+
it "should response to friends_count" do
|
21
|
+
@user.friends_count.should == 2
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe SocialProfile::People::InstagramParser do
|
4
|
+
context "instagram parser" do
|
5
|
+
before(:each) do
|
6
|
+
@user = SocialProfile::Person.get(:instagram_parser, "pavel_galeta", nil)
|
7
|
+
|
8
|
+
stub_request(:get, "https://www.instagram.com/pavel_galeta/media/").
|
9
|
+
to_return(:status => 200, :body => fixture('instagram_parser/media.json'))
|
10
|
+
stub_request(:get, "https://www.instagram.com/pavel_galeta/?__a=1").
|
11
|
+
to_return(:status => 200, :body => fixture('instagram_parser/user.json'))
|
12
|
+
end
|
13
|
+
|
14
|
+
it "should be a instagram profile" do
|
15
|
+
@user.should be_a(SocialProfile::People::InstagramParser)
|
16
|
+
end
|
17
|
+
|
18
|
+
it "should response to last_posts" do
|
19
|
+
posts = @user.last_posts
|
20
|
+
|
21
|
+
expect(posts.size).to eq(20)
|
22
|
+
end
|
23
|
+
|
24
|
+
it "should response to user" do
|
25
|
+
user = @user.user
|
26
|
+
|
27
|
+
expect(user['username']).to eq('pavel_galeta')
|
28
|
+
expect(user['id']).to eq('31973911')
|
29
|
+
end
|
30
|
+
|
31
|
+
it "should response to friends_count" do
|
32
|
+
expect(@user.friends_count).to eq(93)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
end
|
@@ -0,0 +1,68 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require "json"
|
3
|
+
|
4
|
+
describe SocialProfile::Providers::Google do
|
5
|
+
it "should be a Module" do
|
6
|
+
SocialProfile::Providers::Google.should be_a(Module)
|
7
|
+
end
|
8
|
+
|
9
|
+
context "google" do
|
10
|
+
before(:each) do
|
11
|
+
hash = {
|
12
|
+
:provider => "google",
|
13
|
+
:uid => "123456789",
|
14
|
+
:info => {
|
15
|
+
:name => "John Doe",
|
16
|
+
:email => "john@company_name.com",
|
17
|
+
:first_name => "John",
|
18
|
+
:last_name => "Doe",
|
19
|
+
:image => "https://lh3.googleusercontent.com/url/photo.jpg"
|
20
|
+
},
|
21
|
+
:credentials => {
|
22
|
+
:token => "token",
|
23
|
+
:refresh_token => "another_token",
|
24
|
+
:expires_at => 1354920555,
|
25
|
+
:expires => true
|
26
|
+
},
|
27
|
+
:extra => {
|
28
|
+
:raw_info => {
|
29
|
+
:sub => "123456789",
|
30
|
+
:email => "user@domain.example.com",
|
31
|
+
:email_verified => true,
|
32
|
+
:name => "John Doe",
|
33
|
+
:given_name => "John",
|
34
|
+
:family_name => "Doe",
|
35
|
+
:profile => "https://plus.google.com/123456789",
|
36
|
+
:picture => "https://lh3.googleusercontent.com/url/photo.jpg",
|
37
|
+
:gender => "male",
|
38
|
+
:birthday => "0000-06-25",
|
39
|
+
:locale => "en",
|
40
|
+
:hd => "company_name.com"
|
41
|
+
},
|
42
|
+
:id_info => {
|
43
|
+
"iss" => "accounts.google.com",
|
44
|
+
"at_hash" => "HK6E_P6Dh8Y93mRNtsDB1Q",
|
45
|
+
"email_verified" => "true",
|
46
|
+
"sub" => "10769150350006150715113082367",
|
47
|
+
"azp" => "APP_ID",
|
48
|
+
"email" => "jsmith@example.com",
|
49
|
+
"aud" => "APP_ID",
|
50
|
+
"iat" => 1353601026,
|
51
|
+
"exp" => 1353604926,
|
52
|
+
"openid_id" => "https://www.google.com/accounts/o8/id?id=ABCdfdswawerSDFDsfdsfdfjdsf"
|
53
|
+
}
|
54
|
+
}
|
55
|
+
}
|
56
|
+
|
57
|
+
@profile = SocialProfile.get(JSON[hash.to_json])
|
58
|
+
end
|
59
|
+
|
60
|
+
it "should be a google profile" do
|
61
|
+
@profile.should be_a(SocialProfile::Providers::Google)
|
62
|
+
end
|
63
|
+
|
64
|
+
it "should parse profile" do
|
65
|
+
@profile.name.should == "John Doe"
|
66
|
+
end
|
67
|
+
end
|
68
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: social_profile
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Igor Galeta
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2017-02-21 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -95,6 +95,20 @@ dependencies:
|
|
95
95
|
- - "~>"
|
96
96
|
- !ruby/object:Gem::Version
|
97
97
|
version: 1.1.6
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: google-api-client
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - "~>"
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: 0.9.28
|
105
|
+
type: :runtime
|
106
|
+
prerelease: false
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - "~>"
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: 0.9.28
|
98
112
|
- !ruby/object:Gem::Dependency
|
99
113
|
name: httpclient
|
100
114
|
requirement: !ruby/object:Gem::Requirement
|
@@ -138,17 +152,21 @@ files:
|
|
138
152
|
- Rakefile
|
139
153
|
- lib/social_profile.rb
|
140
154
|
- lib/social_profile/people/facebook.rb
|
155
|
+
- lib/social_profile/people/google.rb
|
141
156
|
- lib/social_profile/people/instagram.rb
|
157
|
+
- lib/social_profile/people/instagram_parser.rb
|
142
158
|
- lib/social_profile/people/twitter.rb
|
143
159
|
- lib/social_profile/people/vkontakte.rb
|
144
160
|
- lib/social_profile/person.rb
|
145
161
|
- lib/social_profile/providers/base.rb
|
146
162
|
- lib/social_profile/providers/facebook.rb
|
163
|
+
- lib/social_profile/providers/google.rb
|
147
164
|
- lib/social_profile/providers/instagram.rb
|
148
165
|
- lib/social_profile/providers/odnoklassniki.rb
|
149
166
|
- lib/social_profile/providers/twitter.rb
|
150
167
|
- lib/social_profile/providers/vkontakte.rb
|
151
168
|
- lib/social_profile/response.rb
|
169
|
+
- lib/social_profile/ruby-instagram-scraper.rb
|
152
170
|
- lib/social_profile/utils.rb
|
153
171
|
- lib/social_profile/version.rb
|
154
172
|
- social_profile.gemspec
|
@@ -166,7 +184,10 @@ files:
|
|
166
184
|
- spec/mock_json/facebook/last_posts_big.json
|
167
185
|
- spec/mock_json/facebook/last_posts_big2.json
|
168
186
|
- spec/mock_json/facebook/mutual_friends.json
|
187
|
+
- spec/mock_json/google/channels.json
|
169
188
|
- spec/mock_json/instagram/last_posts.json
|
189
|
+
- spec/mock_json/instagram_parser/media.json
|
190
|
+
- spec/mock_json/instagram_parser/user.json
|
170
191
|
- spec/mock_json/twitter/auth.json
|
171
192
|
- spec/mock_json/twitter/last_posts.json
|
172
193
|
- spec/mock_json/twitter/token.json
|
@@ -186,10 +207,13 @@ files:
|
|
186
207
|
- spec/mock_json/vkontakte/post.json
|
187
208
|
- spec/mock_json/vkontakte/shares_post_3675.json
|
188
209
|
- spec/people/facebook_spec.rb
|
210
|
+
- spec/people/google_spec.rb
|
211
|
+
- spec/people/instagram_parser_spec.rb
|
189
212
|
- spec/people/instagram_spec.rb
|
190
213
|
- spec/people/twitter_spec.rb
|
191
214
|
- spec/people/vkontakte_spec.rb
|
192
215
|
- spec/providers/facebook_spec.rb
|
216
|
+
- spec/providers/google_spec.rb
|
193
217
|
- spec/providers/instagram_spec.rb
|
194
218
|
- spec/providers/twitter_spec.rb
|
195
219
|
- spec/providers/vkontakte_spec.rb
|
@@ -233,7 +257,10 @@ test_files:
|
|
233
257
|
- spec/mock_json/facebook/last_posts_big.json
|
234
258
|
- spec/mock_json/facebook/last_posts_big2.json
|
235
259
|
- spec/mock_json/facebook/mutual_friends.json
|
260
|
+
- spec/mock_json/google/channels.json
|
236
261
|
- spec/mock_json/instagram/last_posts.json
|
262
|
+
- spec/mock_json/instagram_parser/media.json
|
263
|
+
- spec/mock_json/instagram_parser/user.json
|
237
264
|
- spec/mock_json/twitter/auth.json
|
238
265
|
- spec/mock_json/twitter/last_posts.json
|
239
266
|
- spec/mock_json/twitter/token.json
|
@@ -253,12 +280,14 @@ test_files:
|
|
253
280
|
- spec/mock_json/vkontakte/post.json
|
254
281
|
- spec/mock_json/vkontakte/shares_post_3675.json
|
255
282
|
- spec/people/facebook_spec.rb
|
283
|
+
- spec/people/google_spec.rb
|
284
|
+
- spec/people/instagram_parser_spec.rb
|
256
285
|
- spec/people/instagram_spec.rb
|
257
286
|
- spec/people/twitter_spec.rb
|
258
287
|
- spec/people/vkontakte_spec.rb
|
259
288
|
- spec/providers/facebook_spec.rb
|
289
|
+
- spec/providers/google_spec.rb
|
260
290
|
- spec/providers/instagram_spec.rb
|
261
291
|
- spec/providers/twitter_spec.rb
|
262
292
|
- spec/providers/vkontakte_spec.rb
|
263
293
|
- spec/spec_helper.rb
|
264
|
-
has_rdoc:
|