behance 0.5.1 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -13
- data/CHANGELOG.md +15 -0
- data/README.md +143 -63
- data/lib/behance/client.rb +3 -1
- data/lib/behance/collections.rb +24 -16
- data/lib/behance/creatives_to_follow.rb +23 -0
- data/lib/behance/fields.rb +12 -1
- data/lib/behance/project.rb +36 -30
- data/lib/behance/user.rb +91 -35
- data/lib/behance/version.rb +1 -1
- data/lib/behance/wips.rb +19 -22
- data/spec/behance/client_spec.rb +1 -1
- data/spec/behance/collections_spec.rb +5 -5
- data/spec/behance/creatives_to_follow_spec.rb +44 -0
- data/spec/behance/fields_spec.rb +20 -1
- data/spec/behance/project_spec.rb +4 -4
- data/spec/behance/user_spec.rb +122 -28
- data/spec/behance/wips_spec.rb +28 -13
- data/spec/fixtures/collection.json +218 -34
- data/spec/fixtures/collection_projects.json +688 -88
- data/spec/fixtures/collections.json +2192 -104
- data/spec/fixtures/creatives_to_follow.json +302 -0
- data/spec/fixtures/fields.json +323 -26
- data/spec/fixtures/project.json +716 -10
- data/spec/fixtures/project_comments.json +13140 -271
- data/spec/fixtures/projects.json +786 -339
- data/spec/fixtures/user.json +165 -31
- data/spec/fixtures/user_appreciations.json +1155 -211
- data/spec/fixtures/user_collections.json +2153 -70
- data/spec/fixtures/user_followers.json +319 -0
- data/spec/fixtures/user_following.json +362 -0
- data/spec/fixtures/user_projects.json +2076 -172
- data/spec/fixtures/user_stats.json +14 -13
- data/spec/fixtures/user_wips.json +2095 -46
- data/spec/fixtures/user_work_experience.json +37 -29
- data/spec/fixtures/users.json +347 -97
- data/spec/fixtures/wip.json +72 -23
- data/spec/fixtures/wip_revision.json +28 -8
- data/spec/fixtures/wip_revision_comments.json +184 -108
- data/spec/fixtures/wips.json +1015 -158
- 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
|
data/spec/behance/fields_spec.rb
CHANGED
@@ -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 ==
|
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(:
|
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 ==
|
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 ==
|
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 ==
|
74
|
+
@comments.size.should == 396
|
75
75
|
end
|
76
76
|
end
|
77
77
|
end
|
data/spec/behance/user_spec.rb
CHANGED
@@ -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 ==
|
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 ==
|
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 ==
|
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 ==
|
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 ==
|
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 ==
|
120
|
+
should == 5
|
121
121
|
end
|
122
122
|
end
|
123
123
|
end
|
124
124
|
|
125
125
|
describe "#user_appreciations" do
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
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
|
-
|
133
|
-
|
134
|
-
|
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
|
-
|
138
|
-
|
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
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
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
|
-
|
150
|
-
|
151
|
-
|
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
|
-
|
155
|
-
|
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 ==
|
174
|
-
@stats["all_time"]["project_comments"].should ==
|
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
|
|
data/spec/behance/wips_spec.rb
CHANGED
@@ -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: "
|
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 ==
|
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 ==
|
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
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
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
|
-
|
84
|
-
|
85
|
-
|
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
|
-
|
89
|
-
|
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
|
-
{
|
2
|
-
|
3
|
-
"
|
4
|
-
"
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
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
|
-
"
|
30
|
-
|
31
|
-
|
34
|
+
"url": "https://www.behance.net/collection/9866/Cool-Candy-Related-Projects",
|
35
|
+
"stats": {
|
36
|
+
"items": 36,
|
37
|
+
"followers": 244
|
32
38
|
},
|
33
|
-
"
|
34
|
-
"
|
35
|
-
|
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
|
+
}
|