linkedin 0.4.6 → 0.4.7

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.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +0 -1
  3. data/.yardopts +7 -0
  4. data/{changelog.markdown → CHANGELOG.md} +5 -1
  5. data/EXAMPLES.md +199 -0
  6. data/Gemfile +4 -0
  7. data/README.md +43 -0
  8. data/Rakefile +2 -7
  9. data/lib/linked_in/api.rb +34 -2
  10. data/lib/linked_in/api/communications.rb +44 -0
  11. data/lib/linked_in/api/companies.rb +128 -0
  12. data/lib/linked_in/api/groups.rb +115 -0
  13. data/lib/linked_in/api/jobs.rb +64 -0
  14. data/lib/linked_in/api/people.rb +72 -0
  15. data/lib/linked_in/api/query_helpers.rb +86 -0
  16. data/lib/linked_in/api/share_and_social_stream.rb +133 -0
  17. data/lib/linked_in/client.rb +7 -2
  18. data/lib/linked_in/errors.rb +12 -2
  19. data/lib/linked_in/mash.rb +31 -4
  20. data/lib/linked_in/search.rb +16 -1
  21. data/lib/linked_in/version.rb +1 -1
  22. data/lib/linkedin.rb +4 -1
  23. data/linkedin.gemspec +5 -3
  24. data/spec/cases/api_spec.rb +15 -5
  25. data/spec/cases/mash_spec.rb +30 -2
  26. data/spec/cases/oauth_spec.rb +5 -6
  27. data/spec/cases/search_spec.rb +53 -23
  28. data/spec/fixtures/cassette_library/LinkedIn_Api/Company_API.yml +3 -3
  29. data/spec/fixtures/cassette_library/LinkedIn_Api/Company_API/should_load_correct_company_data.yml +81 -0
  30. data/spec/fixtures/cassette_library/LinkedIn_Client/{_authorize_from_request.yml → _authorize_from_request/should_return_a_valid_access_token.yml} +0 -0
  31. data/spec/fixtures/cassette_library/LinkedIn_Client/_request_token/{with_a_callback_url.yml → with_a_callback_url/should_return_a_valid_access_token.yml} +0 -0
  32. data/spec/fixtures/cassette_library/LinkedIn_Client/_request_token/{with_default_options.yml → with_default_options/should_return_a_valid_request_token.yml} +0 -0
  33. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/{by_company_name_option.yml → by_company_name_option/should_perform_a_search.yml} +8 -9
  34. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_email_address/should_perform_a_people_search.yml +57 -0
  35. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/{by_first_name_and_last_name_options.yml → by_first_name_and_last_name_options/should_perform_a_search.yml} +15 -15
  36. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_first_name_and_last_name_options_with_fields/should_perform_a_search.yml +114 -0
  37. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/{by_keywords_string_parameter.yml → by_keywords_string_parameter/should_perform_a_search.yml} +8 -9
  38. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_multiple_email_address/should_perform_a_multi-email_search.yml +59 -0
  39. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/{by_single_keywords_option.yml → by_single_keywords_option/should_perform_a_search.yml} +8 -9
  40. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/{by_single_keywords_option_with_pagination.yml → by_single_keywords_option_with_pagination/should_perform_a_search.yml} +1 -3
  41. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/email_search_returns_unauthorized/should_raise_an_unauthorized_error.yml +59 -0
  42. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/by_keywords_options_with_fields/should_perform_a_search.yml +43 -0
  43. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/{by_keywords_string_parameter.yml → by_keywords_string_parameter/should_perform_a_company_search.yml} +19 -19
  44. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/{by_single_keywords_option.yml → by_single_keywords_option/should_perform_a_company_search.yml} +19 -19
  45. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/{by_single_keywords_option_with_facets_to_return.yml → by_single_keywords_option_with_facets_to_return/should_return_a_facet.yml} +14 -14
  46. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/{by_single_keywords_option_with_pagination.yml → by_single_keywords_option_with_pagination/should_perform_a_search.yml} +15 -15
  47. data/spec/helper.rb +9 -5
  48. metadata +76 -61
  49. data/.document +0 -5
  50. data/README.markdown +0 -84
  51. data/examples/authenticate.rb +0 -26
  52. data/examples/communication.rb +0 -7
  53. data/examples/network.rb +0 -12
  54. data/examples/profile.rb +0 -18
  55. data/examples/sinatra.rb +0 -77
  56. data/examples/status.rb +0 -6
  57. data/lib/linked_in/api/query_methods.rb +0 -176
  58. data/lib/linked_in/api/update_methods.rb +0 -85
  59. data/spec/fixtures/cassette_library/LinkedIn_Client/_request_token.yml +0 -37
  60. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_first_name_and_last_name_options_with_fields.yml +0 -112
  61. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/by_keywords_options_with_fields.yml +0 -232
@@ -1,37 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: https://api.linkedin.com/uas/oauth/requestToken
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - OAuth gem v0.4.4
12
- Authorization:
13
- - OAuth oauth_body_hash="2jmj7l5rSw0yVb%2FvlWAYkK%2FYBwk%3D", oauth_callback="oob",
14
- oauth_consumer_key="eAI15DqRUTTd7OuQJBG3Mo0aw2Ekx5yoLX3x3NaLnbTnZbaU46OEii7uNTKijII4",
15
- oauth_nonce="jSQpxoXaoTl2e0dALgc7VKzRJE993wqzRWuXuF0H0", oauth_signature="wn%2Bw0Jvyb9TQ4DC8sq3CxWMDM7Y%3D",
16
- oauth_signature_method="HMAC-SHA1", oauth_timestamp="1297093507", oauth_version="1.0"
17
- Content-Length:
18
- - '0'
19
- response:
20
- status:
21
- code: 200
22
- message: OK
23
- headers:
24
- Content-Type:
25
- - text/plain
26
- Server:
27
- - Apache-Coyote/1.1
28
- Date:
29
- - Mon, 07 Feb 2011 15:45:08 GMT
30
- Content-Length:
31
- - '236'
32
- body:
33
- encoding: UTF-8
34
- string: oauth_token=95f8619b-7069-433b-ac9e-35dfba02b0f7&oauth_token_secret=dffd7996-6943-48ce-be6b-771e86b10f92&oauth_callback_confirmed=true&xoauth_request_auth_url=https%3A%2F%2Fapi.linkedin.com%2Fuas%2Foauth%2Fauthorize&oauth_expires_in=599
35
- http_version: '1.1'
36
- recorded_at: Wed, 10 Apr 2013 22:06:51 GMT
37
- recorded_with: VCR 2.5.0
@@ -1,112 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,public-profile-url,picture-url),num-results)?first-name=Giliardi&last-name=Pires
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - OAuth gem v0.4.7
12
- Authorization:
13
- - OAuth oauth_consumer_key="mpibxdpwbwry", oauth_nonce="XxYZ3yqoTFr792YTu6TmJPFCrrkZejwXkORldtyZGI",
14
- oauth_signature="cBkWRwhVxBDozgn5sCXBwGIoer4%3D", oauth_signature_method="HMAC-SHA1",
15
- oauth_timestamp="1365631657", oauth_token="d9f69cd6-f3f3-4c26-9f2c-12cd8e228089",
16
- oauth_version="1.0"
17
- X-Li-Format:
18
- - json
19
- response:
20
- status:
21
- code: 200
22
- message: OK
23
- headers:
24
- Server:
25
- - Apache-Coyote/1.1
26
- Transfer-Encoding:
27
- - chunked
28
- Vary:
29
- - ! '*'
30
- Content-Type:
31
- - application/json;charset=UTF-8
32
- X-Li-Request-Id:
33
- - G0J3Z1XF1E
34
- Date:
35
- - Wed, 10 Apr 2013 22:07:36 GMT
36
- X-Li-Format:
37
- - json
38
- body:
39
- encoding: UTF-8
40
- string: ! "{\n \"numResults\": 0,\n \"people\": {\"_total\": 0}\n}"
41
- http_version: '1.1'
42
- recorded_at: Tue, 04 Jun 2013 03:42:37 GMT
43
- - request:
44
- method: get
45
- uri: https://api.linkedin.com/v1/people-search:(people:(id,first-name,last-name,public-profile-url,picture-url),num-results)?first-name=Charles&last-name=Garcia
46
- body:
47
- encoding: US-ASCII
48
- string: ''
49
- headers:
50
- User-Agent:
51
- - OAuth gem v0.4.7
52
- Authorization:
53
- - OAuth oauth_consumer_key="mpibxdpwbwry", oauth_nonce="apcqck1ATxZYGou1ynnfBm6OgZFBz4TXKeuPo160NU",
54
- oauth_signature="zB0MtadBiOOL2rAX%2FdHn71fZyOA%3D", oauth_signature_method="HMAC-SHA1",
55
- oauth_timestamp="1365631934", oauth_token="d9f69cd6-f3f3-4c26-9f2c-12cd8e228089",
56
- oauth_version="1.0"
57
- X-Li-Format:
58
- - json
59
- response:
60
- status:
61
- code: 200
62
- message: OK
63
- headers:
64
- Server:
65
- - Apache-Coyote/1.1
66
- Transfer-Encoding:
67
- - chunked
68
- Vary:
69
- - ! '*'
70
- Content-Type:
71
- - application/json;charset=UTF-8
72
- X-Li-Request-Id:
73
- - 7A7TZHN5V9
74
- Date:
75
- - Wed, 10 Apr 2013 22:12:14 GMT
76
- X-Li-Format:
77
- - json
78
- body:
79
- encoding: UTF-8
80
- string: ! "{\n \"numResults\": 308,\n \"people\": {\n \"_count\": 10,\n
81
- \ \"_start\": 0,\n \"_total\": 110,\n \"values\": [\n {\n \"firstName\":
82
- \"Charles\",\n \"id\": \"2zk34r8TvA\",\n \"lastName\": \"Garcia,
83
- CFA\",\n \"publicProfileUrl\": \"http://www.linkedin.com/in/charlesgarcia\"\n
84
- \ },\n {\n \"firstName\": \"Charles R.\",\n \"id\":
85
- \"NjwO1vU6P6\",\n \"lastName\": \"Garcia Jr.\",\n \"pictureUrl\":
86
- \"http://m3.licdn.com/mpr/mprx/0_eyd5KukV6r4QDft-oYwsKfzsXqyWSdi-oUjVKaLVRAeMtSqtXsJWOmlqospnaaGOWxIUxWUUfdKb\",\n
87
- \ \"publicProfileUrl\": \"http://www.linkedin.com/in/knightwealthmanagement\"\n
88
- \ },\n {\n \"firstName\": \"Charles\",\n \"id\": \"j8ZczJo44W\",\n
89
- \ \"lastName\": \"Garcia-Tobin\",\n \"publicProfileUrl\": \"http://www.linkedin.com/pub/charles-garcia-tobin/1/407/37\"\n
90
- \ },\n {\n \"firstName\": \"Charles\",\n \"id\": \"jYfrk5GM29\",\n
91
- \ \"lastName\": \"Garcia\",\n \"pictureUrl\": \"http://m3.licdn.com/mpr/mprx/0_oCf8Sdu0zOpQN_tEeLaPSwVjvZHIq5CEH6R0SEw2EOpRI3voQk0uio0GUveqBC_QITDYCDz2KP6m\",\n
92
- \ \"publicProfileUrl\": \"http://www.linkedin.com/in/charleshgarcia\"\n
93
- \ },\n {\n \"firstName\": \"Charles\",\n \"id\": \"C-2ASm3SQ1\",\n
94
- \ \"lastName\": \"Garcia\",\n \"pictureUrl\": \"http://m3.licdn.com/mpr/mprx/0_eyd5KuNsktdHTE1-6RasKacFXqyWSdi-oUjVKaLVRAeMtSqtXsJWOmlqospnaaGOWxIUxWRzo_ib\",\n
95
- \ \"publicProfileUrl\": \"http://www.linkedin.com/pub/charles-garcia/26/1b2/b28\"\n
96
- \ },\n {\n \"firstName\": \"Charles\",\n \"id\": \"LG__MFCUTJ\",\n
97
- \ \"lastName\": \"Garcia\",\n \"publicProfileUrl\": \"http://www.linkedin.com/pub/charles-garcia/5/465/b00\"\n
98
- \ },\n {\n \"firstName\": \"Charles\",\n \"id\": \"wjopxKqYYM\",\n
99
- \ \"lastName\": \"Garcia\",\n \"pictureUrl\": \"http://m3.licdn.com/mpr/mprx/0_ePvupanfrtgopBCiEBzPpuFir-Zdp-tioNT1pSkPfNuJin5_Xv58tDrgO049xzPfWKBt1o9wYUsb\",\n
100
- \ \"publicProfileUrl\": \"http://www.linkedin.com/pub/charles-garcia/8/152/3ab\"\n
101
- \ },\n {\n \"firstName\": \"Charles\",\n \"id\": \"AtFQt5Lf1V\",\n
102
- \ \"lastName\": \"Garcia\",\n \"pictureUrl\": \"http://m3.licdn.com/mpr/mprx/0_uuv-7sRI0s_EdtBWuecS7Jf9jM5owt6WaSTS7Jd9GylVN9AdhE5O3Mg41cLzHvF5S7B28YBarPYq\",\n
103
- \ \"publicProfileUrl\": \"http://www.linkedin.com/in/chasgarcia\"\n
104
- \ },\n {\n \"firstName\": \"Charles\",\n \"id\": \"MUXIZwfehE\",\n
105
- \ \"lastName\": \"Garcia\",\n \"publicProfileUrl\": \"http://www.linkedin.com/pub/charles-garcia/14/6a7/81\"\n
106
- \ },\n {\n \"firstName\": \"Charles\",\n \"id\": \"koTmAyWE8J\",\n
107
- \ \"lastName\": \"Schwalbe Garcia-Lago\",\n \"pictureUrl\": \"http://m3.licdn.com/mpr/mprx/0_q6hJ9GyYDCe0NRJ1sGCQ9TSySTY-nZZ1nFqQ9TyatkEGWp7PZhrzZ3Hh_fODzxM0zLGFJ6CC9gBb\",\n
108
- \ \"publicProfileUrl\": \"http://www.linkedin.com/in/charlesschwalbe\"\n
109
- \ }\n ]\n }\n}"
110
- http_version: '1.1'
111
- recorded_at: Tue, 04 Jun 2013 03:42:37 GMT
112
- recorded_with: VCR 2.5.0
@@ -1,232 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://api.linkedin.com/v1/company-search:(companies:(id,name,industries,description,specialties),num-results)?keywords=apple
6
- body:
7
- encoding: US-ASCII
8
- string: ''
9
- headers:
10
- X-Li-Format:
11
- - json
12
- Authorization:
13
- - OAuth oauth_consumer_key="mpibxdpwbwry", oauth_nonce="XIAUlVH3VfeqacvVEQzCvdLSyy9swruF3mouF9mtc",
14
- oauth_signature="ggZObnJ1w5zMIBixfluGoUYZVSg%3D", oauth_signature_method="HMAC-SHA1",
15
- oauth_timestamp="1365631654", oauth_token="d9f69cd6-f3f3-4c26-9f2c-12cd8e228089",
16
- oauth_version="1.0"
17
- User-Agent:
18
- - OAuth gem v0.4.7
19
- response:
20
- status:
21
- code: 200
22
- message: OK
23
- headers:
24
- X-Li-Request-Id:
25
- - 68RH2HSO61
26
- X-Li-Format:
27
- - json
28
- Date:
29
- - Wed, 10 Apr 2013 22:07:35 GMT
30
- Vary:
31
- - ! '*'
32
- Server:
33
- - Apache-Coyote/1.1
34
- Content-Type:
35
- - application/json;charset=UTF-8
36
- Transfer-Encoding:
37
- - chunked
38
- body:
39
- encoding: UTF-8
40
- string: ! "{\n \"companies\": {\n \"_count\": 10,\n \"_start\": 0,\n
41
- \ \"_total\": 8450,\n \"values\": [\n {\n \"description\":
42
- \"Apple designs Macs, the best personal computers in the world, along with
43
- OS X, iLife, iWork and professional software. Apple leads the digital music
44
- revolution with its iPods and iTunes online store. Apple has reinvented the
45
- mobile phone with its revolutionary iPhone and App Store, and is defining
46
- the future of mobile media and computing devices with iPad.\",\n \"id\":
47
- 162479,\n \"industries\": {\n \"_total\": 1,\n \"values\":
48
- [{\n \"code\": \"24\",\n \"name\": \"Consumer Electronics\"\n
49
- \ }]\n },\n \"name\": \"Apple\",\n \"specialties\":
50
- {\n \"_total\": 4,\n \"values\": [\n \"Innovative
51
- product development\",\n \"world class operations\",\n \"Retail\",\n
52
- \ \"Telephone Support\"\n ]\n }\n },\n {\n
53
- \ \"description\": \"Experience the Difference. \\r\\nFor over
54
- 40 years, Apple Vacations has provided the most value in vacations to millions
55
- of people. Throughout the years, we\\u2019ve provided what you want in a vacation
56
- \\u2013 great service, convenience, and value. We understand just how important
57
- your vacation is. We know because, like you, vacations are important to us
58
- too. \\r\\n \\r\\nApple Vacations is a company of energetic, hardworking employees
59
- with the same entrepreneurial attitudes as our founders. Headquartered just
60
- outside Philadelphia with regional offices in Chicago and Boston, the company
61
- is completely focused on providing quality vacations for our customers. Employees
62
- are empowered to make decisions that impact the quality of their customers\\u2019
63
- vacations on a daily basis. Since our humble beginnings, Apple Vacations has
64
- created the ultimate \\u201cbeginning-to-end\\u201d vacation experience for
65
- customers. Apple Vacations employees will greet you at your departure airport
66
- in more than 20 cities; and will meet your flight in our charter destinations.
67
- Apple Vacations\\u2019 sister companies, flies customers to their destinations
68
- from more than 20 U.S. cities; and Amstar, is the destination management company
69
- in-resort with uniformed representatives, who will greet you upon arrival
70
- and assist you while you are at your resort. Unlike any other travel company,
71
- Apple Vacations truly provides the ultimate in a quality vacation experience.\",\n
72
- \ \"id\": 19271,\n \"industries\": {\n \"_total\": 1,\n
73
- \ \"values\": [{\n \"code\": \"30\",\n \"name\":
74
- \"Leisure & Travel\"\n }]\n },\n \"name\": \"Apple
75
- Vacations\",\n \"specialties\": {\n \"_total\": 2,\n \"values\":
76
- [\n \"Leisure travel\",\n \"all inclusive vacation packages\"\n
77
- \ ]\n }\n },\n {\n \"description\": \"Big
78
- Apple International Realty has been listing, selling and managing Residential
79
- Real Estate in four counties of the Greater Orlando and Central Florida areas
80
- for over five years. Because our Property Management Division had grown substantially,
81
- and to fill the growing need for property management services in Central Florida,
82
- we founded Orlando Rental Store in 2008. In addition to providing \\\"Lease
83
- Only\\\" services at competitive prices, we currently manage close to 50 properties
84
- in the Greater Orlando Area.\",\n \"id\": 778626,\n \"industries\":
85
- {\n \"_total\": 1,\n \"values\": [{\n \"code\":
86
- \"44\",\n \"name\": \"Real Estate\"\n }]\n },\n
87
- \ \"name\": \"Big Apple Holdings, Inc. dba Big Apple International Realty\"\n
88
- \ },\n {\n \"description\": \"Apple & Associates is an executive
89
- search firm that specializes in the Pharmaceutical, Medical Device and Consumer
90
- Product Industries. We provide extensive coverage of these worldwide markets
91
- and have forged a solid reputation in the industry as a competent, aggressive,
92
- and resource-rich recruiting firm. We are a nation-wide company with offices
93
- through-out the United States. \\r\\n\\r\\nApple & Associates belongs to Intercity
94
- Personnel Associates (IPA) and the Top Echelon Network. Through these worldwide
95
- recruiting networks, we share confidentially coded information about available
96
- positions and receive qualified candidates within a short period of time.
97
- \ With one phone call you not only have rapid access to our candidates, but
98
- also to qualified candidates from over 1,000 of the nation\\u2019s other top
99
- recruiting firms. Because our executive recruiters specialize in different
100
- industry segments, we can give you the service you deserve in a fast, focused,
101
- and efficient manner and provide you with quality industry specific candidates.
102
- \ \\r\\n\\r\\nWe realize the importance of hiring professionals who understand
103
- and are able to assimilate with your company\\u2019s business model, culture,
104
- process, equipment, and materials. Our team has studied the hiring decisions
105
- that make the firms in the Pharmaceutical and Medical Device industries so
106
- successful. Our candidates will meet the standard your company demands, with
107
- the technical and industry background to match.\",\n \"id\": 112136,\n
108
- \ \"industries\": {\n \"_total\": 1,\n \"values\":
109
- [{\n \"code\": \"104\",\n \"name\": \"Staffing & Recruiting\"\n
110
- \ }]\n },\n \"name\": \"Apple & Associates\",\n \"specialties\":
111
- {\n \"_total\": 20,\n \"values\": [\n \"Medical
112
- Device\",\n \"Pharmaceutical\",\n \"Power\",\n \"Energy\",\n
113
- \ \"Consumer Products\",\n \"Supply Chain\",\n \"Purchasing\",\n
114
- \ \"Engineering\",\n \"Marketing\",\n \"Sales\",\n
115
- \ \"Human Resources\",\n \"Science\",\n \"Finance\",\n
116
- \ \"Manufacturing\",\n \"Operations\",\n \"R&D\",\n
117
- \ \"Six Sigma\",\n \"IT\",\n \"chemist\",\n
118
- \ \"Executive Management\"\n ]\n }\n },\n {\n
119
- \ \"description\": \"Headquartered in Singapore and a presence in 9
120
- countries globally, Stone Apple is a Specialized Consulting firm focused mainly
121
- on Business Intelligence & Analytics, Enterprise Resource Planning, Knowledge
122
- Management & Application Integration with a strong product portfolio, analytical
123
- applications, Proprietary Industry Solutions and strong services capability
124
- \\r\\n\\r\\nStone Apple has a strong offshore presence in SE Asia with development
125
- centers in Vietnam and Malaysia. The Company has a strong presence and networks
126
- in Asia Pacific, Europe and United States to support their rapidly growing
127
- MNC enterprise customer base \\r\\n\\r\\nStone Apple provides customized solutions
128
- to meet the changing needs of enterprises globally. From leading industry
129
- methodologies to in-house proven models, Stone Apple collaborates with their
130
- customers to deliver tangible business results that impact their bottom line.\",\n
131
- \ \"id\": 772044,\n \"industries\": {\n \"_total\":
132
- 1,\n \"values\": [{\n \"code\": \"96\",\n \"name\":
133
- \"Information Technology & Services\"\n }]\n },\n \"name\":
134
- \"Stone Apple Solutions\"\n },\n {\n \"description\": \"iSquare
135
- S.A. is the Apple Authorised Distributor of Greece and Cyprus since September
136
- 2010. iSquare is distributing Apple products but also plans, implements and
137
- provides intergrated solutions, based on the innovative Apple products and
138
- technology. iSquare's strategic goal is to increase the use of Apple products
139
- among the Greek consumers, but also to provide users the ultimate Apple experience.\\r\\n\\r\\niSquare
140
- creates and provides a complete ecosystem for Apple products and services,
141
- aiming to bring Greek customers closer to Apple's philosophy. In order to
142
- do that, iSquare:\\r\\n\\r\\n- Creates a wide network of POS (Points Of Sales)
143
- that spreads throughout Greece and Cyprus\\r\\n\\r\\n- Develops its relations
144
- with major retail chains in order to promote Apple products to a wide range
145
- of customers\\r\\n\\r\\n- Creates a unique network of stores exclusively for
146
- Apple products, always in line with the high standards of \\r\\n Apple Premium
147
- Reseller program\\r\\n\\r\\n- Invests on continuous and in depth training
148
- of the sales network in order to provide the best before and after sale \\r\\n
149
- \ support, according to Apple's and iSquare's high standards\\r\\n\\r\\n-
150
- Focuses on the crucial sector of Education\\r\\n\\r\\n- Constantly works to
151
- improve the support of Apple products and solutions\\r\\n\\r\\n- Completes
152
- Apple's ecosystem as the distributor of software and peripherals from well
153
- known brands.\\r\\n\\r\\n\\r\\nWith a vision that derives from Apple's innovation,
154
- iSquare aspires to bring the Apple products at the stature they deserve within
155
- the Greek and Cypriot market.\",\n \"id\": 2135525,\n \"industries\":
156
- {\n \"_total\": 1,\n \"values\": [{\n \"code\":
157
- \"24\",\n \"name\": \"Consumer Electronics\"\n }]\n },\n
158
- \ \"name\": \"iSquare - Apple Authorized Distributor in Greece & Cyprus\"\n
159
- \ },\n {\n \"description\": \"Filex (Moj Apple DuÄ\x87an i
160
- Servis) je autorizirani Apple partner za prodaju, servis i podršku.\\r\\n\\r\\nFilex
161
- je osnovan 1992 godine te od tada u kontinuitetu razvijamo i unapreÄ\x91ujemo
162
- prepoznatljivost Apple tehnologija prezentirajuÄ\x87i upotrebnu vrijednost
163
- Apple rjeÅ¡enja, na domaÄ\x87em i regionalnom tržiÅ¡tu.\\r\\n\\r\\nNaÅ¡ fokus
164
- nije iskljuÄ\x8Divo na tehnologijama veÄ\x87 kako te tehnologije podrediti
165
- potrebama korisnika. Sukladno tome, Filex nije samo još jedna u nizu trgovina
166
- u koju Ä\x87ete doÄ\x87i \\\"pokupiti\\\" svoj Apple ureÄ\x91aj, veÄ\x87 mjesto
167
- na kojem Ä\x87ete postavljati pitanja, razgovarati i diskutirati te na kraju
168
- izaÄ\x87i sa rjeÅ¡enjem - ma kako god ono na kraju izgledalo!\\r\\n\\r\\nKontaktirajte
169
- nas preko našeg Internet Store-a (www.filex.hr), ili nam pišite na prodaja@filx.hr
170
- ili servis@filex.hr.\\r\\nI svakako nam se pridružite na Facebook-u na http://www.facebook.com/pages/Filex-Moj-Apple-DuÄ\x87an-i-Servis/131194173598671\\r\\n\\r\\nVaÅ¡e
171
- zadovoljstvo naša je misija!\",\n \"id\": 2303504,\n \"industries\":
172
- {\n \"_total\": 1,\n \"values\": [{\n \"code\":
173
- \"3\",\n \"name\": \"Computer Hardware\"\n }]\n },\n
174
- \ \"name\": \"Filex Apple Store & Support\",\n \"specialties\":
175
- {\n \"_total\": 4,\n \"values\": [\n \"Apple
176
- Store\",\n \"Apple Podrška i Servis\",\n \"Apple Rješenja\",\n
177
- \ \"Apple B2B\"\n ]\n }\n },\n {\n \"description\":
178
- \"Als Apple een nieuwssite zou maken in Vlaanderen, dan was het AppleVlaanderen.
179
- AppleVlaanderen is gemaakt met dezelfde passie en aandacht voor detail als
180
- de producten van Apple zelf.\\r\\n\\r\\nWe behandelen de nieuwsfeiten over
181
- Apple met zorg en proberen u zo goed mogelijk in te lichten als Apple-Fan
182
- in Vlaanderen. Dagelijks circuleren er duizenden geruchten over Apple in het
183
- algemeen, onze taak is deze te bundelen en u mee te delen.\\r\\n\\r\\nDit
184
- doen we met veel liefde voor de verschillende producten en voor Apple in het
185
- algemeen. Onze medewerkers werken allemaal op vrijwillige basis en hebben
186
- voldoende kennis over de producten van Apple.\",\n \"id\": 2419290,\n
187
- \ \"industries\": {\n \"_total\": 1,\n \"values\":
188
- [{\n \"code\": \"81\",\n \"name\": \"Newspapers\"\n
189
- \ }]\n },\n \"name\": \"Apple Nieuws Vlaanderen\",\n
190
- \ \"specialties\": {\n \"_total\": 4,\n \"values\":
191
- [\n \"apple\",\n \"iPhone\",\n \"iPad\",\n
192
- \ \"mac\"\n ]\n }\n },\n {\n \"description\":
193
- \"OGGO est une société de conseils et solutions Apple Macintosh basée à
194
- Genève, nous proposons notre savoir faire essentiellement aux PME et particuliers.\\r\\n\\r\\nNos
195
- services en un coup d'oeil :\\r\\n\\r\\n// Réparations\\r\\n// Optimisations
196
- matérielles\\r\\n// Contrats de maintenance\\r\\n// Dépannage sur site\\r\\n//
197
- Interventions urgentes\\r\\n// Maintenance\\r\\n// Aide à l'achat\\r\\n//
198
- Formations\",\n \"id\": 2260437,\n \"industries\": {\n \"_total\":
199
- 1,\n \"values\": [{\n \"code\": \"96\",\n \"name\":
200
- \"Information Technology & Services\"\n }]\n },\n \"name\":
201
- \"OGGO - Services Apple Macintosh\",\n \"specialties\": {\n \"_total\":
202
- 7,\n \"values\": [\n \"Consulting & conseils Apple Macintosh\",\n
203
- \ \"Support Apple Macintosh\",\n \"Maintenance Mac OS
204
- X Server\",\n \"Dépannage Mac OS X\",\n \"Installation
205
- Mac OS X Server\",\n \"Interventions Apple Macintosh\",\n \"Formation
206
- Apple Macintosh\"\n ]\n }\n },\n {\n \"description\":
207
- \"Apple-Crumble provides sound advice, sales and support for all apple mac
208
- products and related peripherals including external hard drives, printers,
209
- scanners and both apple and 3rd party software. Apple-Crumble are also experts
210
- in troubleshooting, repair and maintenance. Our staff are apple trained and
211
- certified with over 15 years experience.\\r\\n\\r\\nAll work is guaranteed
212
- and all enquiries are welcome.\\r\\n\\r\\nWe are obviously very \\u2018pro\\u2019
213
- apple and firmly believe that once you go mac you never go back!\\r\\n\\r\\nFor
214
- your convenience Apple-Crumble have our own workshop and offices with free
215
- parking in Penzance, Cornwall so that you have the extra peace of mind knowing
216
- that your equipment is being serviced in a clean and safe environment. You
217
- may also view, demo and purchase new hardware or add-ons, as well as discussing
218
- tailor-made options for you and/or your business.\\r\\n\\r\\nApple-Crumble\\u2019s
219
- service extends to on-site visits for emergency or contract call-outs, as
220
- well as delivery and installation of new products and systems. We cover Penzance,
221
- Falmouth, Helston and the Lizard, St Ives, Hayle, Truro, Camborne, Redruth,
222
- and all surrounding areas including north Cornwall and Devon\\r\\n\\r\\nIn
223
- most cases it is safer and more cost effective to bring your hardware to us
224
- as we are geared up for any static or time delay issues, but it is very rare
225
- that we cannot provide a solution, wherever you may be!\",\n \"id\":
226
- 1049054,\n \"industries\": {\n \"_total\": 1,\n \"values\":
227
- [{\n \"code\": \"3\",\n \"name\": \"Computer Hardware\"\n
228
- \ }]\n },\n \"name\": \"Apple Crumble\"\n }\n ]\n
229
- \ },\n \"numResults\": 8450\n}"
230
- http_version: '1.1'
231
- recorded_at: Tue, 04 Jun 2013 03:42:37 GMT
232
- recorded_with: VCR 2.5.0