behance 0.5.1 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +5 -13
  2. data/CHANGELOG.md +15 -0
  3. data/README.md +143 -63
  4. data/lib/behance/client.rb +3 -1
  5. data/lib/behance/collections.rb +24 -16
  6. data/lib/behance/creatives_to_follow.rb +23 -0
  7. data/lib/behance/fields.rb +12 -1
  8. data/lib/behance/project.rb +36 -30
  9. data/lib/behance/user.rb +91 -35
  10. data/lib/behance/version.rb +1 -1
  11. data/lib/behance/wips.rb +19 -22
  12. data/spec/behance/client_spec.rb +1 -1
  13. data/spec/behance/collections_spec.rb +5 -5
  14. data/spec/behance/creatives_to_follow_spec.rb +44 -0
  15. data/spec/behance/fields_spec.rb +20 -1
  16. data/spec/behance/project_spec.rb +4 -4
  17. data/spec/behance/user_spec.rb +122 -28
  18. data/spec/behance/wips_spec.rb +28 -13
  19. data/spec/fixtures/collection.json +218 -34
  20. data/spec/fixtures/collection_projects.json +688 -88
  21. data/spec/fixtures/collections.json +2192 -104
  22. data/spec/fixtures/creatives_to_follow.json +302 -0
  23. data/spec/fixtures/fields.json +323 -26
  24. data/spec/fixtures/project.json +716 -10
  25. data/spec/fixtures/project_comments.json +13140 -271
  26. data/spec/fixtures/projects.json +786 -339
  27. data/spec/fixtures/user.json +165 -31
  28. data/spec/fixtures/user_appreciations.json +1155 -211
  29. data/spec/fixtures/user_collections.json +2153 -70
  30. data/spec/fixtures/user_followers.json +319 -0
  31. data/spec/fixtures/user_following.json +362 -0
  32. data/spec/fixtures/user_projects.json +2076 -172
  33. data/spec/fixtures/user_stats.json +14 -13
  34. data/spec/fixtures/user_wips.json +2095 -46
  35. data/spec/fixtures/user_work_experience.json +37 -29
  36. data/spec/fixtures/users.json +347 -97
  37. data/spec/fixtures/wip.json +72 -23
  38. data/spec/fixtures/wip_revision.json +28 -8
  39. data/spec/fixtures/wip_revision_comments.json +184 -108
  40. data/spec/fixtures/wips.json +1015 -158
  41. metadata +26 -17
@@ -0,0 +1,44 @@
1
+ require 'spec_helper'
2
+
3
+ describe Behance::Client::CreativesToFollow do
4
+
5
+ before(:all) do
6
+ @client = Behance::Client.new(access_token: "abc123")
7
+ end
8
+
9
+ before do
10
+ @options = { api_key: @client.access_token }
11
+ end
12
+
13
+ describe "#creatives_to_follow" do
14
+ context "without parameters" do
15
+ before do
16
+ stub_get("creativestofollow").with(query: @options).
17
+ to_return(body: fixture("creatives_to_follow.json"))
18
+ @creatives_to_follow = @client.creatives_to_follow
19
+ end
20
+
21
+ it "makes a http request" do
22
+ a_get("creativestofollow").
23
+ with(query: @options).should have_been_made
24
+ end
25
+
26
+ it "gets a list of creatives to follow" do
27
+ @creatives_to_follow.size.should == 10
28
+ end
29
+ end
30
+
31
+ context "with parameters" do
32
+ before do
33
+ @options.merge!(page: 2)
34
+ stub_get("creativestofollow").with(query: @options).
35
+ to_return(body: fixture("creatives_to_follow.json"))
36
+ end
37
+
38
+ it "gets a list of creatives to follow" do
39
+ @creatives_to_follow = @client.creatives_to_follow(@options).size.
40
+ should == 10
41
+ end
42
+ end
43
+ end
44
+ end
@@ -24,7 +24,26 @@ describe Behance::Client::Fields do
24
24
  end
25
25
 
26
26
  it "gets a fields list" do
27
- @fields.size.should == 6
27
+ @fields.size.should == 67
28
+ end
29
+
30
+ end
31
+
32
+ describe "#popular" do
33
+
34
+ before do
35
+ stub_get("fields").with(query: @options).
36
+ to_return(body: fixture("fields.json"))
37
+ @popular = @client.popular
38
+ end
39
+
40
+ it "makes a http request" do
41
+ a_get("fields").
42
+ with(query: @options).should have_been_made
43
+ end
44
+
45
+ it "gets a popular fields list" do
46
+ @popular.size.should == 12
28
47
  end
29
48
 
30
49
  end
@@ -3,7 +3,7 @@ require 'spec_helper'
3
3
  describe Behance::Client::Project do
4
4
 
5
5
  before(:all) do
6
- @client = Behance::Client.new(:access_token => "abc123")
6
+ @client = Behance::Client.new(access_token: "abc123")
7
7
  end
8
8
 
9
9
  before do
@@ -24,7 +24,7 @@ describe Behance::Client::Project do
24
24
  end
25
25
 
26
26
  it "gets a list of projects" do
27
- @projects.size.should == 7
27
+ @projects.size.should == 12
28
28
  end
29
29
  end
30
30
 
@@ -36,7 +36,7 @@ describe Behance::Client::Project do
36
36
  end
37
37
 
38
38
  it "gets a list of projects" do
39
- @client.projects(@options).size.should == 7
39
+ @client.projects(@options).size.should == 12
40
40
  end
41
41
  end
42
42
  end
@@ -71,7 +71,7 @@ describe Behance::Client::Project do
71
71
  end
72
72
 
73
73
  it "gets a list of comments" do
74
- @comments.size.should == 9
74
+ @comments.size.should == 396
75
75
  end
76
76
  end
77
77
  end
@@ -24,7 +24,7 @@ describe Behance::Client::User do
24
24
  end
25
25
 
26
26
  it "gets an users list" do
27
- @users.size.should == 4
27
+ @users.size.should == 12
28
28
  end
29
29
  end
30
30
 
@@ -36,7 +36,7 @@ describe Behance::Client::User do
36
36
  end
37
37
 
38
38
  it "gets an users list" do
39
- @users = @client.users(@options).size.should == 4
39
+ @users = @client.users(@options).size.should == 12
40
40
  end
41
41
  end
42
42
  end
@@ -72,7 +72,7 @@ describe Behance::Client::User do
72
72
  end
73
73
 
74
74
  it "gets a list of projects" do
75
- @projects.size.should == 2
75
+ @projects.size.should == 12
76
76
  end
77
77
  end
78
78
 
@@ -85,7 +85,7 @@ describe Behance::Client::User do
85
85
 
86
86
  it "gets a list of projects" do
87
87
  @projects = @client.user_projects(1, @options).
88
- size.should == 2
88
+ size.should == 12
89
89
  end
90
90
  end
91
91
  end
@@ -104,7 +104,7 @@ describe Behance::Client::User do
104
104
  end
105
105
 
106
106
  it "gets a list of wips" do
107
- @wips.size.should == 2
107
+ @wips.size.should == 5
108
108
  end
109
109
  end
110
110
 
@@ -117,42 +117,72 @@ describe Behance::Client::User do
117
117
 
118
118
  it "gets a list of wips" do
119
119
  @wips = @client.user_wips(1, @options).size.
120
- should == 2
120
+ should == 5
121
121
  end
122
122
  end
123
123
  end
124
124
 
125
125
  describe "#user_appreciations" do
126
- before do
127
- stub_get("users/1/appreciations").with(query: @options).
128
- to_return(body: fixture("user_appreciations.json"))
129
- @appreciations = @client.user_appreciations(1)
130
- end
126
+ context "without parameters" do
127
+ before do
128
+ stub_get("users/1/appreciations").with(query: @options).
129
+ to_return(body: fixture("user_appreciations.json"))
130
+ @appreciations = @client.user_appreciations(1)
131
+ end
131
132
 
132
- it "makes a http request" do
133
- a_get("users/1/appreciations").with(query: @options).
134
- should have_been_made
133
+ it "makes a http request" do
134
+ a_get("users/1/appreciations").with(query: @options).
135
+ should have_been_made
136
+ end
137
+
138
+ it "gets a list of appreciations" do
139
+ @appreciations.size.should == 16
140
+ end
135
141
  end
136
142
 
137
- it "gets a list of appreciations" do
138
- @appreciations.size.should == 4
143
+ context "with parameters" do
144
+ before do
145
+ @options.merge!(page: 2)
146
+ stub_get("users/1/appreciations").with(query: @options).
147
+ to_return(body: fixture("user_appreciations.json"))
148
+ end
149
+
150
+ it "gets a list of appreciations" do
151
+ @appreciations = @client.user_appreciations(1, @options).size.
152
+ should == 16
153
+ end
139
154
  end
140
155
  end
141
156
 
142
157
  describe "#user_collections" do
143
- before do
144
- stub_get("users/1/collections").with(query: @options).
145
- to_return(body: fixture("user_collections.json"))
146
- @collections = @client.user_collections(1)
147
- end
158
+ context "without parameters" do
159
+ before do
160
+ stub_get("users/1/collections").with(query: @options).
161
+ to_return(body: fixture("user_collections.json"))
162
+ @collections = @client.user_collections(1)
163
+ end
148
164
 
149
- it "makes a http request" do
150
- a_get("users/1/collections").with(query: @options).
151
- should have_been_made
165
+ it "makes a http request" do
166
+ a_get("users/1/collections").with(query: @options).
167
+ should have_been_made
168
+ end
169
+
170
+ it "gets a list of collections" do
171
+ @collections.size.should == 10
172
+ end
152
173
  end
153
174
 
154
- it "gets a list of collections" do
155
- @collections.size.should == 2
175
+ context "with parameters" do
176
+ before do
177
+ @options.merge!(page: 2)
178
+ stub_get("users/1/collections").with(query: @options).
179
+ to_return(body: fixture("user_collections.json"))
180
+ end
181
+
182
+ it "gets a list of collections" do
183
+ @collections = @client.user_collections(1, @options).size.
184
+ should == 10
185
+ end
156
186
  end
157
187
  end
158
188
 
@@ -170,8 +200,72 @@ describe Behance::Client::User do
170
200
 
171
201
  it "gets a users stats" do
172
202
  @stats.size.should == 2
173
- @stats["today"]["project_appreciations"].should == 5
174
- @stats["all_time"]["project_comments"].should == 20
203
+ @stats["today"]["project_appreciations"].should == 2
204
+ @stats["all_time"]["project_comments"].should == 630
205
+ end
206
+ end
207
+
208
+ describe "#user_followers" do
209
+ context "without parameters" do
210
+ before do
211
+ stub_get("users/1/followers").with(query: @options).
212
+ to_return(body: fixture("user_followers.json"))
213
+ @followers = @client.user_followers(1)
214
+ end
215
+
216
+ it "makes a http request" do
217
+ a_get("users/1/followers").
218
+ with(query: @options).should have_been_made
219
+ end
220
+
221
+ it "gets a list of followers" do
222
+ @followers.size.should == 12
223
+ end
224
+ end
225
+
226
+ context "with parameters" do
227
+ before do
228
+ @options.merge!(sort: "appreciations", page: 2)
229
+ stub_get("users/1/followers").with(query: @options).
230
+ to_return(body: fixture("user_followers.json"))
231
+ end
232
+
233
+ it "gets a list of followers" do
234
+ @followers = @client.user_followers(1, @options).size.
235
+ should == 12
236
+ end
237
+ end
238
+ end
239
+
240
+ describe "#user_following" do
241
+ context "without parameters" do
242
+ before do
243
+ stub_get("users/1/following").with(query: @options).
244
+ to_return(body: fixture("user_following.json"))
245
+ @following = @client.user_following(1)
246
+ end
247
+
248
+ it "makes a http request" do
249
+ a_get("users/1/following").
250
+ with(query: @options).should have_been_made
251
+ end
252
+
253
+ it "gets a list of following" do
254
+ @following.size.should == 12
255
+ end
256
+ end
257
+
258
+ context "with parameters" do
259
+ before do
260
+ @options.merge!(sort: "appreciations", page: 2)
261
+ stub_get("users/1/following").with(query: @options).
262
+ to_return(body: fixture("user_following.json"))
263
+ end
264
+
265
+ it "gets a list of following" do
266
+ @following = @client.user_following(1, @options).size.
267
+ should == 12
268
+ end
175
269
  end
176
270
  end
177
271
 
@@ -3,7 +3,7 @@ require 'spec_helper'
3
3
  describe Behance::Client::Wips do
4
4
 
5
5
  before(:all) do
6
- @client = Behance::Client.new(access_token: "av1lj432vjf")
6
+ @client = Behance::Client.new(access_token: "abc123")
7
7
  end
8
8
 
9
9
  before do
@@ -23,7 +23,7 @@ describe Behance::Client::Wips do
23
23
  end
24
24
 
25
25
  it "gets a list of wips" do
26
- @wips.size.should == 3
26
+ @wips.size.should == 12
27
27
  end
28
28
  end
29
29
 
@@ -35,7 +35,7 @@ describe Behance::Client::Wips do
35
35
  end
36
36
 
37
37
  it "gets a list of wips" do
38
- @client.wips(@options).size.should == 3
38
+ @client.wips(@options).size.should == 12
39
39
  end
40
40
  end
41
41
  end
@@ -74,19 +74,34 @@ describe Behance::Client::Wips do
74
74
  end
75
75
 
76
76
  describe "#wip_revision_comments" do
77
- before do
78
- stub_get("wips/1/2/comments").with(query: @options).
79
- to_return(body: fixture("wip_revision_comments.json"))
80
- @comments = @client.wip_revision_comments(1, 2)
81
- end
77
+ context "without parameters" do
78
+ before do
79
+ stub_get("wips/1/2/comments").with(query: @options).
80
+ to_return(body: fixture("wip_revision_comments.json"))
81
+ @comments = @client.wip_revision_comments(1, 2)
82
+ end
82
83
 
83
- it "makes a http request" do
84
- a_get("wips/1/2/comments").with(query: @options).
85
- should have_been_made
84
+ it "makes a http request" do
85
+ a_get("wips/1/2/comments").with(query: @options).
86
+ should have_been_made
87
+ end
88
+
89
+ it "gets a list of comments" do
90
+ @comments.size.should == 6
91
+ end
86
92
  end
87
93
 
88
- it "gets a list of comments" do
89
- @comments.size.should == 4
94
+ context "with parameters" do
95
+ before do
96
+ @options.merge!(page: 2)
97
+ stub_get("wips/1/2/comments").with(query: @options).
98
+ to_return(body: fixture("wip_revision_comments.json"))
99
+ end
100
+
101
+ it "gets a list of comments" do
102
+ @comments = @client.wip_revision_comments(1, 2, @options).size.
103
+ should == 6
104
+ end
90
105
  end
91
106
  end
92
107
  end
@@ -1,36 +1,220 @@
1
- {"collection":{
2
- "id":"4776629",
3
- "title":"-FASHION",
4
- "owners":[
5
- {
6
- "id":1545661,
7
- "first_name":"Ale",
8
- "last_name":"Corsini",
9
- "username":"alecorsini",
10
- "city":"Berlin",
11
- "state":"",
12
- "country":"Germany",
13
- "company":"Ale Corsini | digital filmmaker",
14
- "occupation":"",
15
- "created_on":1346604010,
16
- "url":"http:\/\/www.behance.net\/alecorsini",
17
- "display_name":"Ale Corsini",
18
- "images":{
19
- "32":"http:\/\/behance.vo.llnwd.net\/profiles17\/1545661\/32xfe9012188c697ec1d811a074eff535ab.jpg",
20
- "50":"http:\/\/behance.vo.llnwd.net\/profiles17\/1545661\/50xfe9012188c697ec1d811a074eff535ab.jpg",
21
- "78":"http:\/\/behance.vo.llnwd.net\/profiles17\/1545661\/78xfe9012188c697ec1d811a074eff535ab.jpg",
22
- "115":"http:\/\/behance.vo.llnwd.net\/profiles17\/1545661\/115xfe9012188c697ec1d811a074eff535ab.jpg",
23
- "129":"http:\/\/behance.vo.llnwd.net\/profiles17\/1545661\/129xfe9012188c697ec1d811a074eff535ab.jpg",
24
- "138":"http:\/\/behance.vo.llnwd.net\/profiles17\/1545661\/fe9012188c697ec1d811a074eff535ab.jpg"
25
- },
26
- "fields":["Cinematography", "Directing", "Film"]
27
- }
1
+ {
2
+ "collection": {
3
+ "id": 9866,
4
+ "title": "Cool Candy Related Projects",
5
+ "owners": [
6
+ {
7
+ "id": 50004,
8
+ "first_name": "Scott",
9
+ "last_name": "Belsky",
10
+ "username": "sbelsky",
11
+ "city": "New York",
12
+ "state": "New York",
13
+ "country": "United States",
14
+ "location": "New York, NY, USA",
15
+ "company": "Adobe",
16
+ "occupation": "Head of Behance; Community",
17
+ "created_on": 1182480652,
18
+ "url": "https://www.behance.net/sbelsky",
19
+ "images": {
20
+ "50": "https://mir-s3-cdn-cf.behance.net/user/50/50004.53a9829c17328.jpg",
21
+ "115": "https://mir-s3-cdn-cf.behance.net/user/115/50004.53a9829c17328.jpg",
22
+ "138": "https://mir-s3-cdn-cf.behance.net/user/138/50004.53a9829c17328.jpg"
23
+ },
24
+ "display_name": "Scott Belsky",
25
+ "fields": [
26
+ "Interaction Design",
27
+ "UI/UX",
28
+ "Web Design"
29
+ ],
30
+ "has_default_image": 0,
31
+ "website": "http://www.scottbelsky.com"
32
+ }
28
33
  ],
29
- "stats":{
30
- "items":2,
31
- "followers":0
34
+ "url": "https://www.behance.net/collection/9866/Cool-Candy-Related-Projects",
35
+ "stats": {
36
+ "items": 36,
37
+ "followers": 244
32
38
  },
33
- "images":["http:\/\/behance.vo.llnwd.net\/profiles17\/1545661\/projects\/5028817\/7e42a4ad2685251e95407b5e553d0f7c.jpg", "http:\/\/behance.vo.llnwd.net\/profiles17\/1545661\/projects\/5027865\/a8ed0a9f256504150adc1ab258c0ee13.jpg"],
34
- "created_on":1347901891,
35
- "modified_on":1347903068
36
- }}
39
+ "privacy": "public",
40
+ "latest_projects": [
41
+ {
42
+ "id": 22159121,
43
+ "name": "KamaSugar",
44
+ "published_on": 1418874815,
45
+ "created_on": 1418874560,
46
+ "modified_on": 1418874815,
47
+ "url": "https://www.behance.net/gallery/22159121/KamaSugar",
48
+ "privacy": "public",
49
+ "fields": [
50
+ "Fine Arts",
51
+ "Photography",
52
+ "Sculpting"
53
+ ],
54
+ "covers": {
55
+ "404": "https://mir-s3-cdn-cf.behance.net/projects/404/22159121.54924ef6e24e1.jpg",
56
+ "202": "https://mir-s3-cdn-cf.behance.net/projects/202/22159121.54924ef6e24e1.jpg",
57
+ "230": "https://mir-s3-cdn-cf.behance.net/projects/230/22159121.54924ef6e24e1.jpg",
58
+ "115": "https://mir-s3-cdn-cf.behance.net/projects/115/22159121.54924ef6e24e1.jpg"
59
+ },
60
+ "mature_content": 0,
61
+ "mature_access": "allowed",
62
+ "owners": [
63
+ {
64
+ "id": 353989,
65
+ "first_name": "Massimo",
66
+ "last_name": "Gammacurta",
67
+ "username": "gammacurta",
68
+ "city": "City",
69
+ "state": "State / Province",
70
+ "country": "United States",
71
+ "location": "USA",
72
+ "company": "",
73
+ "occupation": "",
74
+ "created_on": 1299535577,
75
+ "url": "https://www.behance.net/gammacurta",
76
+ "images": {
77
+ "50": "https://a3.behance.net/img/profile/no-image-50.jpg?cb=744985463",
78
+ "115": "https://a3.behance.net/img/profile/no-image-115.jpg?cb=744985463",
79
+ "138": "https://a3.behance.net/img/profile/no-image-138.jpg?cb=744985463"
80
+ },
81
+ "display_name": "Massimo Gammacurta",
82
+ "fields": [
83
+ "Photography",
84
+ "Sculpting",
85
+ "Fine Arts"
86
+ ],
87
+ "has_default_image": 1,
88
+ "website": "http://gammacurta.com"
89
+ }
90
+ ],
91
+ "stats": {
92
+ "views": 1910,
93
+ "appreciations": 93,
94
+ "comments": 4
95
+ },
96
+ "conceived_on": -62169984000
97
+ },
98
+ {
99
+ "id": 15206089,
100
+ "name": "Eye Candy (typography)",
101
+ "published_on": 1394553089,
102
+ "created_on": 1394551340,
103
+ "modified_on": 1443455736,
104
+ "url": "https://www.behance.net/gallery/15206089/Eye-Candy-(typography)",
105
+ "privacy": "public",
106
+ "fields": [
107
+ "Culinary Arts",
108
+ "Typography"
109
+ ],
110
+ "covers": {
111
+ "404": "https://mir-s3-cdn-cf.behance.net/projects/404/5d8d9615206089.5559db700748c.png",
112
+ "202": "https://mir-s3-cdn-cf.behance.net/projects/202/5d8d9615206089.5559db700748c.png",
113
+ "230": "https://mir-s3-cdn-cf.behance.net/projects/230/5d8d9615206089.5559db700748c.png",
114
+ "115": "https://mir-s3-cdn-cf.behance.net/projects/115/5d8d9615206089.5559db700748c.png"
115
+ },
116
+ "mature_content": 0,
117
+ "mature_access": "allowed",
118
+ "owners": [
119
+ {
120
+ "id": 587801,
121
+ "first_name": "Pat",
122
+ "last_name": "Simons",
123
+ "username": "vanhoning",
124
+ "city": "The Hague",
125
+ "state": "",
126
+ "country": "Netherlands",
127
+ "location": "The Hague, Netherlands",
128
+ "company": "",
129
+ "occupation": "Creative at Van Honing",
130
+ "created_on": 1313240697,
131
+ "url": "https://www.behance.net/vanhoning",
132
+ "images": {
133
+ "50": "https://mir-s3-cdn-cf.behance.net/user/50/90af95587801.560650892e074.jpg",
134
+ "100": "https://mir-s3-cdn-cf.behance.net/user/100/90af95587801.560650892e074.jpg",
135
+ "115": "https://mir-s3-cdn-cf.behance.net/user/115/90af95587801.560650892e074.jpg",
136
+ "230": "https://mir-s3-cdn-cf.behance.net/user/230/90af95587801.560650892e074.jpg",
137
+ "138": "https://mir-s3-cdn-cf.behance.net/user/138/90af95587801.560650892e074.jpg",
138
+ "276": "https://mir-s3-cdn-cf.behance.net/user/276/90af95587801.560650892e074.jpg"
139
+ },
140
+ "display_name": "Pat Simons",
141
+ "fields": [
142
+ "Graphic Design",
143
+ "Typography",
144
+ "Illustration"
145
+ ],
146
+ "has_default_image": 0,
147
+ "website": "www.patricksimons.net"
148
+ }
149
+ ],
150
+ "stats": {
151
+ "views": 10222,
152
+ "appreciations": 1476,
153
+ "comments": 95
154
+ },
155
+ "conceived_on": -62169984000
156
+ },
157
+ {
158
+ "id": 3725387,
159
+ "name": "Wooden Popsicle",
160
+ "published_on": 1335179392,
161
+ "created_on": 1335178164,
162
+ "modified_on": 1432481479,
163
+ "url": "https://www.behance.net/gallery/3725387/Wooden-Popsicle",
164
+ "privacy": "public",
165
+ "fields": [
166
+ "Fine Arts",
167
+ "Product Design",
168
+ "Sculpting"
169
+ ],
170
+ "covers": {
171
+ "202": "https://mir-s3-cdn-cf.behance.net/projects/202/3725387.545e7ada1680d.jpg",
172
+ "115": "https://mir-s3-cdn-cf.behance.net/projects/115/3725387.545e7ada1680d.jpg"
173
+ },
174
+ "mature_content": 0,
175
+ "mature_access": "allowed",
176
+ "owners": [
177
+ {
178
+ "id": 852917,
179
+ "first_name": "Mauro",
180
+ "last_name": "Savoldi",
181
+ "username": "JohnnyHermann",
182
+ "city": "Milan",
183
+ "state": "",
184
+ "country": "Italy",
185
+ "location": "Milan, Italy",
186
+ "company": "johnny hermann",
187
+ "occupation": "artist - designer - maker",
188
+ "created_on": 1326290661,
189
+ "url": "https://www.behance.net/JohnnyHermann",
190
+ "images": {
191
+ "50": "https://mir-s3-cdn-cf.behance.net/user/50/852917.53b125f4da484.jpg",
192
+ "100": "https://mir-s3-cdn-cf.behance.net/user/100/852917.53b125f4da484.jpg",
193
+ "115": "https://mir-s3-cdn-cf.behance.net/user/115/852917.53b125f4da484.jpg",
194
+ "230": "https://mir-s3-cdn-cf.behance.net/user/230/852917.53b125f4da484.jpg",
195
+ "138": "https://mir-s3-cdn-cf.behance.net/user/138/852917.53b125f4da484.jpg",
196
+ "276": "https://mir-s3-cdn-cf.behance.net/user/276/852917.53b125f4da484.jpg"
197
+ },
198
+ "display_name": "Mauro Savoldi",
199
+ "fields": [
200
+ "Sculpting",
201
+ "Product Design",
202
+ "Fine Arts"
203
+ ],
204
+ "has_default_image": 0,
205
+ "website": "www.johnnyhermann.com"
206
+ }
207
+ ],
208
+ "stats": {
209
+ "views": 6873,
210
+ "appreciations": 1451,
211
+ "comments": 136
212
+ },
213
+ "conceived_on": -62169984000
214
+ }
215
+ ],
216
+ "created_on": 1203804070,
217
+ "modified_on": 1443866509
218
+ },
219
+ "http_code": 200
220
+ }