linkedin 0.4.1 → 0.4.2

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 (24) hide show
  1. checksums.yaml +7 -0
  2. data/README.markdown +26 -24
  3. data/Rakefile +1 -0
  4. data/lib/linked_in/api/query_methods.rb +3 -3
  5. data/lib/linked_in/version.rb +1 -1
  6. data/linkedin.gemspec +7 -7
  7. data/spec/cases/api_spec.rb +6 -0
  8. data/spec/fixtures/cassette_library/LinkedIn_Api/Company_API.yml +50 -42
  9. data/spec/fixtures/cassette_library/LinkedIn_Client/_authorize_from_request.yml +31 -22
  10. data/spec/fixtures/cassette_library/LinkedIn_Client/_request_token.yml +31 -22
  11. data/spec/fixtures/cassette_library/LinkedIn_Client/_request_token/with_a_callback_url.yml +31 -22
  12. data/spec/fixtures/cassette_library/LinkedIn_Client/_request_token/with_default_options.yml +31 -22
  13. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_company_name_option.yml +73 -89
  14. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_first_name_and_last_name_options.yml +80 -111
  15. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_first_name_and_last_name_options_with_fields.yml +92 -127
  16. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_keywords_string_parameter.yml +43 -62
  17. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_single_keywords_option.yml +43 -62
  18. data/spec/fixtures/cassette_library/LinkedIn_Search/_search/by_single_keywords_option_with_pagination.yml +35 -37
  19. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/by_keywords_options_with_fields.yml +222 -25
  20. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/by_keywords_string_parameter.yml +70 -146
  21. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/by_single_keywords_option.yml +70 -146
  22. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/by_single_keywords_option_with_facets_to_return.yml +70 -146
  23. data/spec/fixtures/cassette_library/LinkedIn_Search/_search_company/by_single_keywords_option_with_pagination.yml +64 -126
  24. metadata +21 -57
@@ -1,47 +1,45 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: https://api.linkedin.com:443/v1/people-search?count=5&keywords=github&start=5
6
- body:
7
- headers:
8
- x-li-format:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.linkedin.com/v1/people-search?count=5&keywords=github&start=5
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ X-Li-Format:
9
11
  - json
10
- authorization:
11
- - OAuth oauth_consumer_key="mpibxdpwbwry", oauth_nonce="PfrLyLbcfxXAJshwSsQ4YDPBk1OncuNV0RjgB4fbVEs", oauth_signature="16fUd%2BHUkWJULyxMCEbISV0Ltks%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1365631656", oauth_token="d9f69cd6-f3f3-4c26-9f2c-12cd8e228089", oauth_version="1.0"
12
- user-agent:
12
+ Authorization:
13
+ - OAuth oauth_consumer_key="mpibxdpwbwry", oauth_nonce="PfrLyLbcfxXAJshwSsQ4YDPBk1OncuNV0RjgB4fbVEs",
14
+ oauth_signature="16fUd%2BHUkWJULyxMCEbISV0Ltks%3D", oauth_signature_method="HMAC-SHA1",
15
+ oauth_timestamp="1365631656", oauth_token="d9f69cd6-f3f3-4c26-9f2c-12cd8e228089",
16
+ oauth_version="1.0"
17
+ User-Agent:
13
18
  - OAuth gem v0.4.7
14
- response: !ruby/struct:VCR::Response
15
- status: !ruby/struct:VCR::ResponseStatus
19
+ response:
20
+ status:
16
21
  code: 200
17
22
  message: OK
18
- headers:
19
- x-li-request-id:
23
+ headers:
24
+ X-Li-Request-Id:
20
25
  - JI3L4KN8K1
21
- x-li-format:
26
+ X-Li-Format:
22
27
  - json
23
- date:
28
+ Date:
24
29
  - Wed, 10 Apr 2013 22:07:36 GMT
25
- vary:
26
- - "*"
27
- server:
30
+ Vary:
31
+ - ! '*'
32
+ Server:
28
33
  - Apache-Coyote/1.1
29
- content-type:
34
+ Content-Type:
30
35
  - application/json;charset=UTF-8
31
- transfer-encoding:
36
+ Transfer-Encoding:
32
37
  - chunked
33
- body: |-
34
- {
35
- "numResults": 6,
36
- "people": {
37
- "_count": 1,
38
- "_start": 5,
39
- "_total": 6,
40
- "values": [{
41
- "firstName": "Satish",
42
- "id": "V1FPuGot-I",
43
- "lastName": "Talim"
44
- }]
45
- }
46
- }
47
- http_version: "1.1"
38
+ body:
39
+ encoding: UTF-8
40
+ string: ! "{\n \"numResults\": 6,\n \"people\": {\n \"_count\": 1,\n \"_start\":
41
+ 5,\n \"_total\": 6,\n \"values\": [{\n \"firstName\": \"Satish\",\n
42
+ \ \"id\": \"V1FPuGot-I\",\n \"lastName\": \"Talim\"\n }]\n }\n}"
43
+ http_version: '1.1'
44
+ recorded_at: Tue, 04 Jun 2013 03:42:37 GMT
45
+ recorded_with: VCR 2.5.0
@@ -1,35 +1,232 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: https://api.linkedin.com:443/v1/company-search:(companies:(id,name,industries,description,specialties),num-results)?keywords=apple
6
- body:
7
- headers:
8
- x-li-format:
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:
9
11
  - json
10
- authorization:
11
- - OAuth oauth_consumer_key="mpibxdpwbwry", oauth_nonce="XIAUlVH3VfeqacvVEQzCvdLSyy9swruF3mouF9mtc", oauth_signature="ggZObnJ1w5zMIBixfluGoUYZVSg%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1365631654", oauth_token="d9f69cd6-f3f3-4c26-9f2c-12cd8e228089", oauth_version="1.0"
12
- user-agent:
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:
13
18
  - OAuth gem v0.4.7
14
- response: !ruby/struct:VCR::Response
15
- status: !ruby/struct:VCR::ResponseStatus
19
+ response:
20
+ status:
16
21
  code: 200
17
22
  message: OK
18
- headers:
19
- x-li-request-id:
23
+ headers:
24
+ X-Li-Request-Id:
20
25
  - 68RH2HSO61
21
- x-li-format:
26
+ X-Li-Format:
22
27
  - json
23
- date:
28
+ Date:
24
29
  - Wed, 10 Apr 2013 22:07:35 GMT
25
- vary:
26
- - "*"
27
- server:
30
+ Vary:
31
+ - ! '*'
32
+ Server:
28
33
  - Apache-Coyote/1.1
29
- content-type:
34
+ Content-Type:
30
35
  - application/json;charset=UTF-8
31
- transfer-encoding:
36
+ Transfer-Encoding:
32
37
  - chunked
33
- body: "{\n \"companies\": {\n \"_count\": 10,\n \"_start\": 0,\n \"_total\": 8450,\n \"values\": [\n {\n \"description\": \"Apple designs Macs, the best personal computers in the world, along with OS X, iLife, iWork and professional software. Apple leads the digital music revolution with its iPods and iTunes online store. Apple has reinvented the mobile phone with its revolutionary iPhone and App Store, and is defining the future of mobile media and computing devices with iPad.\",\n \"id\": 162479,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"24\",\n \"name\": \"Consumer Electronics\"\n }]\n },\n \"name\": \"Apple\",\n \"specialties\": {\n \"_total\": 4,\n \"values\": [\n \"Innovative product development\",\n \"world class operations\",\n \"Retail\",\n \"Telephone Support\"\n ]\n }\n },\n {\n \"description\": \"Experience the Difference. \\r\\nFor over 40 years, Apple Vacations has provided the most value in vacations to millions of people. Throughout the years, we\\u2019ve provided what you want in a vacation \\u2013 great service, convenience, and value. We understand just how important your vacation is. We know because, like you, vacations are important to us too. \\r\\n \\r\\nApple Vacations is a company of energetic, hardworking employees with the same entrepreneurial attitudes as our founders. Headquartered just outside Philadelphia with regional offices in Chicago and Boston, the company is completely focused on providing quality vacations for our customers. Employees are empowered to make decisions that impact the quality of their customers\\u2019 vacations on a daily basis. Since our humble beginnings, Apple Vacations has created the ultimate \\u201cbeginning-to-end\\u201d vacation experience for customers. Apple Vacations employees will greet you at your departure airport in more than 20 cities; and will meet your flight in our charter destinations. Apple Vacations\\u2019 sister companies, flies customers to their destinations from more than 20 U.S. cities; and Amstar, is the destination management company in-resort with uniformed representatives, who will greet you upon arrival and assist you while you are at your resort. Unlike any other travel company, Apple Vacations truly provides the ultimate in a quality vacation experience.\",\n \"id\": 19271,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"30\",\n \"name\": \"Leisure & Travel\"\n }]\n },\n \"name\": \"Apple Vacations\",\n \"specialties\": {\n \"_total\": 2,\n \"values\": [\n \"Leisure travel\",\n \"all inclusive vacation packages\"\n ]\n }\n },\n {\n \"description\": \"Big Apple International Realty has been listing, selling and managing Residential Real Estate in four counties of the Greater Orlando and Central Florida areas for over five years. Because our Property Management Division had grown substantially, and to fill the growing need for property management services in Central Florida, we founded Orlando Rental Store in 2008. In addition to providing \\\"Lease Only\\\" services at competitive prices, we currently manage close to 50 properties in the Greater Orlando Area.\",\n \"id\": 778626,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"44\",\n \"name\": \"Real Estate\"\n }]\n },\n \"name\": \"Big Apple Holdings, Inc. dba Big Apple International Realty\"\n },\n {\n \"description\": \"Apple & Associates is an executive search firm that specializes in the Pharmaceutical, Medical Device and Consumer Product Industries. We provide extensive coverage of these worldwide markets and have forged a solid reputation in the industry as a competent, aggressive, and resource-rich recruiting firm. We are a nation-wide company with offices through-out the United States. \\r\\n\\r\\nApple & Associates belongs to Intercity Personnel Associates (IPA) and the Top Echelon Network. Through these worldwide recruiting networks, we share confidentially coded information about available positions and receive qualified candidates within a short period of time. With one phone call you not only have rapid access to our candidates, but also to qualified candidates from over 1,000 of the nation\\u2019s other top recruiting firms. Because our executive recruiters specialize in different industry segments, we can give you the service you deserve in a fast, focused, and efficient manner and provide you with quality industry specific candidates. \\r\\n\\r\\nWe realize the importance of hiring professionals who understand and are able to assimilate with your company\\u2019s business model, culture, process, equipment, and materials. Our team has studied the hiring decisions that make the firms in the Pharmaceutical and Medical Device industries so successful. Our candidates will meet the standard your company demands, with the technical and industry background to match.\",\n \"id\": 112136,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"104\",\n \"name\": \"Staffing & Recruiting\"\n }]\n },\n \"name\": \"Apple & Associates\",\n \"specialties\": {\n \"_total\": 20,\n \"values\": [\n \"Medical Device\",\n \"Pharmaceutical\",\n \"Power\",\n \"Energy\",\n \"Consumer Products\",\n \"Supply Chain\",\n \"Purchasing\",\n \"Engineering\",\n \"Marketing\",\n \"Sales\",\n \"Human Resources\",\n \"Science\",\n \"Finance\",\n \"Manufacturing\",\n \"Operations\",\n \"R&D\",\n \"Six Sigma\",\n \"IT\",\n \"chemist\",\n \"Executive Management\"\n ]\n }\n },\n {\n \"description\": \"Headquartered in Singapore and a presence in 9 countries globally, Stone Apple is a Specialized Consulting firm focused mainly on Business Intelligence & Analytics, Enterprise Resource Planning, Knowledge Management & Application Integration with a strong product portfolio, analytical applications, Proprietary Industry Solutions and strong services capability \\r\\n\\r\\nStone Apple has a strong offshore presence in SE Asia with development centers in Vietnam and Malaysia. The Company has a strong presence and networks in Asia Pacific, Europe and United States to support their rapidly growing MNC enterprise customer base \\r\\n\\r\\nStone Apple provides customized solutions to meet the changing needs of enterprises globally. From leading industry methodologies to in-house proven models, Stone Apple collaborates with their customers to deliver tangible business results that impact their bottom line.\",\n \"id\": 772044,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"96\",\n \"name\": \"Information Technology & Services\"\n }]\n },\n \"name\": \"Stone Apple Solutions\"\n },\n {\n \"description\": \"iSquare S.A. is the Apple Authorised Distributor of Greece and Cyprus since September 2010. iSquare is distributing Apple products but also plans, implements and provides intergrated solutions, based on the innovative Apple products and technology. iSquare's strategic goal is to increase the use of Apple products among the Greek consumers, but also to provide users the ultimate Apple experience.\\r\\n\\r\\niSquare creates and provides a complete ecosystem for Apple products and services, aiming to bring Greek customers closer to Apple's philosophy. In order to do that, iSquare:\\r\\n\\r\\n- Creates a wide network of POS (Points Of Sales) that spreads throughout Greece and Cyprus\\r\\n\\r\\n- Develops its relations with major retail chains in order to promote Apple products to a wide range of customers\\r\\n\\r\\n- Creates a unique network of stores exclusively for Apple products, always in line with the high standards of \\r\\n Apple Premium Reseller program\\r\\n\\r\\n- Invests on continuous and in depth training of the sales network in order to provide the best before and after sale \\r\\n support, according to Apple's and iSquare's high standards\\r\\n\\r\\n- Focuses on the crucial sector of Education\\r\\n\\r\\n- Constantly works to improve the support of Apple products and solutions\\r\\n\\r\\n- Completes Apple's ecosystem as the distributor of software and peripherals from well known brands.\\r\\n\\r\\n\\r\\nWith a vision that derives from Apple's innovation, iSquare aspires to bring the Apple products at the stature they deserve within the Greek and Cypriot market.\",\n \"id\": 2135525,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"24\",\n \"name\": \"Consumer Electronics\"\n }]\n },\n \"name\": \"iSquare - Apple Authorized Distributor in Greece & Cyprus\"\n },\n {\n \"description\": \"Filex (Moj Apple Du\xC4\x87an i Servis) je autorizirani Apple partner za prodaju, servis i podr\xC5\xA1ku.\\r\\n\\r\\nFilex je osnovan 1992 godine te od tada u kontinuitetu razvijamo i unapre\xC4\x91ujemo prepoznatljivost Apple tehnologija prezentiraju\xC4\x87i upotrebnu vrijednost Apple rje\xC5\xA1enja, na doma\xC4\x87em i regionalnom tr\xC5\xBEi\xC5\xA1tu.\\r\\n\\r\\nNa\xC5\xA1 fokus nije isklju\xC4\x8Divo na tehnologijama ve\xC4\x87 kako te tehnologije podrediti potrebama korisnika. Sukladno tome, Filex nije samo jo\xC5\xA1 jedna u nizu trgovina u koju \xC4\x87ete do\xC4\x87i \\\"pokupiti\\\" svoj Apple ure\xC4\x91aj, ve\xC4\x87 mjesto na kojem \xC4\x87ete postavljati pitanja, razgovarati i diskutirati te na kraju iza\xC4\x87i sa rje\xC5\xA1enjem - ma kako god ono na kraju izgledalo!\\r\\n\\r\\nKontaktirajte nas preko na\xC5\xA1eg Internet Store-a (www.filex.hr), ili nam pi\xC5\xA1ite na prodaja@filx.hr ili servis@filex.hr.\\r\\nI svakako nam se pridru\xC5\xBEite na Facebook-u na http://www.facebook.com/pages/Filex-Moj-Apple-Du\xC4\x87an-i-Servis/131194173598671\\r\\n\\r\\nVa\xC5\xA1e zadovoljstvo na\xC5\xA1a je misija!\",\n \"id\": 2303504,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"3\",\n \"name\": \"Computer Hardware\"\n }]\n },\n \"name\": \"Filex Apple Store & Support\",\n \"specialties\": {\n \"_total\": 4,\n \"values\": [\n \"Apple Store\",\n \"Apple Podr\xC5\xA1ka i Servis\",\n \"Apple Rje\xC5\xA1enja\",\n \"Apple B2B\"\n ]\n }\n },\n {\n \"description\": \"Als Apple een nieuwssite zou maken in Vlaanderen, dan was het AppleVlaanderen. AppleVlaanderen is gemaakt met dezelfde passie en aandacht voor detail als de producten van Apple zelf.\\r\\n\\r\\nWe behandelen de nieuwsfeiten over Apple met zorg en proberen u zo goed mogelijk in te lichten als Apple-Fan in Vlaanderen. Dagelijks circuleren er duizenden geruchten over Apple in het algemeen, onze taak is deze te bundelen en u mee te delen.\\r\\n\\r\\nDit doen we met veel liefde voor de verschillende producten en voor Apple in het algemeen. Onze medewerkers werken allemaal op vrijwillige basis en hebben voldoende kennis over de producten van Apple.\",\n \"id\": 2419290,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"81\",\n \"name\": \"Newspapers\"\n }]\n },\n \"name\": \"Apple Nieuws Vlaanderen\",\n \"specialties\": {\n \"_total\": 4,\n \"values\": [\n \"apple\",\n \"iPhone\",\n \"iPad\",\n \"mac\"\n ]\n }\n },\n {\n \"description\": \"OGGO est une soci\xC3\xA9t\xC3\xA9 de conseils et solutions Apple Macintosh bas\xC3\xA9e \xC3\xA0 Gen\xC3\xA8ve, nous proposons notre savoir faire essentiellement aux PME et particuliers.\\r\\n\\r\\nNos services en un coup d'oeil :\\r\\n\\r\\n// R\xC3\xA9parations\\r\\n// Optimisations mat\xC3\xA9rielles\\r\\n// Contrats de maintenance\\r\\n// D\xC3\xA9pannage sur site\\r\\n// Interventions urgentes\\r\\n// Maintenance\\r\\n// Aide \xC3\xA0 l'achat\\r\\n// Formations\",\n \"id\": 2260437,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"96\",\n \"name\": \"Information Technology & Services\"\n }]\n },\n \"name\": \"OGGO - Services Apple Macintosh\",\n \"specialties\": {\n \"_total\": 7,\n \"values\": [\n \"Consulting & conseils Apple Macintosh\",\n \"Support Apple Macintosh\",\n \"Maintenance Mac OS X Server\",\n \"D\xC3\xA9pannage Mac OS X\",\n \"Installation Mac OS X Server\",\n \"Interventions Apple Macintosh\",\n \"Formation Apple Macintosh\"\n ]\n }\n },\n {\n \"description\": \"Apple-Crumble provides sound advice, sales and support for all apple mac products and related peripherals including external hard drives, printers, scanners and both apple and 3rd party software. Apple-Crumble are also experts in troubleshooting, repair and maintenance. Our staff are apple trained and certified with over 15 years experience.\\r\\n\\r\\nAll work is guaranteed and all enquiries are welcome.\\r\\n\\r\\nWe are obviously very \\u2018pro\\u2019 apple and firmly believe that once you go mac you never go back!\\r\\n\\r\\nFor your convenience Apple-Crumble have our own workshop and offices with free parking in Penzance, Cornwall so that you have the extra peace of mind knowing that your equipment is being serviced in a clean and safe environment. You may also view, demo and purchase new hardware or add-ons, as well as discussing tailor-made options for you and/or your business.\\r\\n\\r\\nApple-Crumble\\u2019s service extends to on-site visits for emergency or contract call-outs, as well as delivery and installation of new products and systems. We cover Penzance, Falmouth, Helston and the Lizard, St Ives, Hayle, Truro, Camborne, Redruth, and all surrounding areas including north Cornwall and Devon\\r\\n\\r\\nIn most cases it is safer and more cost effective to bring your hardware to us as we are geared up for any static or time delay issues, but it is very rare that we cannot provide a solution, wherever you may be!\",\n \"id\": 1049054,\n \"industries\": {\n \"_total\": 1,\n \"values\": [{\n \"code\": \"3\",\n \"name\": \"Computer Hardware\"\n }]\n },\n \"name\": \"Apple Crumble\"\n }\n ]\n },\n \"numResults\": 8450\n\
34
- }"
35
- http_version: "1.1"
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
@@ -1,156 +1,80 @@
1
- ---
2
- - !ruby/struct:VCR::HTTPInteraction
3
- request: !ruby/struct:VCR::Request
4
- method: :get
5
- uri: https://api.linkedin.com:443/v1/company-search?keywords=apple
6
- body:
7
- headers:
8
- x-li-format:
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://api.linkedin.com/v1/company-search?keywords=apple
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ X-Li-Format:
9
11
  - json
10
- authorization:
11
- - OAuth oauth_consumer_key="mpibxdpwbwry", oauth_nonce="xtc6RIIOpDj7AANJ9VyIXibv4YhcM3gxMUg6OewBSo", oauth_signature="8ShrnvC9fxh1tU3YNEjF4l%2Fhrho%3D", oauth_signature_method="HMAC-SHA1", oauth_timestamp="1365631653", oauth_token="d9f69cd6-f3f3-4c26-9f2c-12cd8e228089", oauth_version="1.0"
12
- user-agent:
12
+ Authorization:
13
+ - OAuth oauth_consumer_key="mpibxdpwbwry", oauth_nonce="xtc6RIIOpDj7AANJ9VyIXibv4YhcM3gxMUg6OewBSo",
14
+ oauth_signature="8ShrnvC9fxh1tU3YNEjF4l%2Fhrho%3D", oauth_signature_method="HMAC-SHA1",
15
+ oauth_timestamp="1365631653", oauth_token="d9f69cd6-f3f3-4c26-9f2c-12cd8e228089",
16
+ oauth_version="1.0"
17
+ User-Agent:
13
18
  - OAuth gem v0.4.7
14
- response: !ruby/struct:VCR::Response
15
- status: !ruby/struct:VCR::ResponseStatus
19
+ response:
20
+ status:
16
21
  code: 200
17
22
  message: OK
18
- headers:
19
- x-li-request-id:
23
+ headers:
24
+ X-Li-Request-Id:
20
25
  - 5LR8OTP90S
21
- x-li-format:
26
+ X-Li-Format:
22
27
  - json
23
- date:
28
+ Date:
24
29
  - Wed, 10 Apr 2013 22:07:32 GMT
25
- vary:
26
- - "*"
27
- server:
30
+ Vary:
31
+ - ! '*'
32
+ Server:
28
33
  - Apache-Coyote/1.1
29
- content-type:
34
+ Content-Type:
30
35
  - application/json;charset=UTF-8
31
- transfer-encoding:
36
+ Transfer-Encoding:
32
37
  - chunked
33
- body: |-
34
- {
35
- "companies": {
36
- "_count": 10,
37
- "_start": 0,
38
- "_total": 8450,
39
- "values": [
40
- {
41
- "id": 162479,
42
- "name": "Apple"
43
- },
44
- {
45
- "id": 19271,
46
- "name": "Apple Vacations"
47
- },
48
- {
49
- "id": 778626,
50
- "name": "Big Apple Holdings, Inc. dba Big Apple International Realty"
51
- },
52
- {
53
- "id": 112136,
54
- "name": "Apple & Associates"
55
- },
56
- {
57
- "id": 772044,
58
- "name": "Stone Apple Solutions"
59
- },
60
- {
61
- "id": 2135525,
62
- "name": "iSquare - Apple Authorized Distributor in Greece & Cyprus"
63
- },
64
- {
65
- "id": 2303504,
66
- "name": "Filex Apple Store & Support"
67
- },
68
- {
69
- "id": 2419290,
70
- "name": "Apple Nieuws Vlaanderen"
71
- },
72
- {
73
- "id": 2260437,
74
- "name": "OGGO - Services Apple Macintosh"
75
- },
76
- {
77
- "id": 1049054,
78
- "name": "Apple Crumble"
79
- }
80
- ]
81
- },
82
- "facets": {
83
- "_total": 1,
84
- "values": [{
85
- "buckets": {
86
- "_total": 10,
87
- "values": [
88
- {
89
- "code": "us:0",
90
- "count": 2511,
91
- "name": "United States",
92
- "selected": false
93
- },
94
- {
95
- "code": "gb:0",
96
- "count": 702,
97
- "name": "United Kingdom",
98
- "selected": false
99
- },
100
- {
101
- "code": "us:84",
102
- "count": 322,
103
- "name": "San Francisco Bay Area",
104
- "selected": false
105
- },
106
- {
107
- "code": "us:70",
108
- "count": 285,
109
- "name": "Greater New York City Area",
110
- "selected": false
111
- },
112
- {
113
- "code": "nl:0",
114
- "count": 284,
115
- "name": "Netherlands",
116
- "selected": false
117
- },
118
- {
119
- "code": "ca:0",
120
- "count": 266,
121
- "name": "Canada",
122
- "selected": false
123
- },
124
- {
125
- "code": "au:0",
126
- "count": 195,
127
- "name": "Australia",
128
- "selected": false
129
- },
130
- {
131
- "code": "in:0",
132
- "count": 186,
133
- "name": "India",
134
- "selected": false
135
- },
136
- {
137
- "code": "it:0",
138
- "count": 177,
139
- "name": "Italy",
140
- "selected": false
141
- },
142
- {
143
- "code": "us:49",
144
- "count": 173,
145
- "name": "Greater Los Angeles Area",
146
- "selected": false
147
- }
148
- ]
149
- },
150
- "code": "location",
151
- "name": "Location"
152
- }]
153
- },
154
- "numResults": 8450
155
- }
156
- http_version: "1.1"
38
+ body:
39
+ encoding: UTF-8
40
+ string: ! "{\n \"companies\": {\n \"_count\": 10,\n \"_start\": 0,\n
41
+ \ \"_total\": 8450,\n \"values\": [\n {\n \"id\": 162479,\n
42
+ \ \"name\": \"Apple\"\n },\n {\n \"id\": 19271,\n \"name\":
43
+ \"Apple Vacations\"\n },\n {\n \"id\": 778626,\n \"name\":
44
+ \"Big Apple Holdings, Inc. dba Big Apple International Realty\"\n },\n
45
+ \ {\n \"id\": 112136,\n \"name\": \"Apple & Associates\"\n
46
+ \ },\n {\n \"id\": 772044,\n \"name\": \"Stone Apple
47
+ Solutions\"\n },\n {\n \"id\": 2135525,\n \"name\":
48
+ \"iSquare - Apple Authorized Distributor in Greece & Cyprus\"\n },\n
49
+ \ {\n \"id\": 2303504,\n \"name\": \"Filex Apple Store &
50
+ Support\"\n },\n {\n \"id\": 2419290,\n \"name\":
51
+ \"Apple Nieuws Vlaanderen\"\n },\n {\n \"id\": 2260437,\n
52
+ \ \"name\": \"OGGO - Services Apple Macintosh\"\n },\n {\n
53
+ \ \"id\": 1049054,\n \"name\": \"Apple Crumble\"\n }\n ]\n
54
+ \ },\n \"facets\": {\n \"_total\": 1,\n \"values\": [{\n \"buckets\":
55
+ {\n \"_total\": 10,\n \"values\": [\n {\n \"code\":
56
+ \"us:0\",\n \"count\": 2511,\n \"name\": \"United States\",\n
57
+ \ \"selected\": false\n },\n {\n \"code\":
58
+ \"gb:0\",\n \"count\": 702,\n \"name\": \"United Kingdom\",\n
59
+ \ \"selected\": false\n },\n {\n \"code\":
60
+ \"us:84\",\n \"count\": 322,\n \"name\": \"San Francisco
61
+ Bay Area\",\n \"selected\": false\n },\n {\n
62
+ \ \"code\": \"us:70\",\n \"count\": 285,\n \"name\":
63
+ \"Greater New York City Area\",\n \"selected\": false\n },\n
64
+ \ {\n \"code\": \"nl:0\",\n \"count\": 284,\n
65
+ \ \"name\": \"Netherlands\",\n \"selected\": false\n
66
+ \ },\n {\n \"code\": \"ca:0\",\n \"count\":
67
+ 266,\n \"name\": \"Canada\",\n \"selected\": false\n
68
+ \ },\n {\n \"code\": \"au:0\",\n \"count\":
69
+ 195,\n \"name\": \"Australia\",\n \"selected\": false\n
70
+ \ },\n {\n \"code\": \"in:0\",\n \"count\":
71
+ 186,\n \"name\": \"India\",\n \"selected\": false\n
72
+ \ },\n {\n \"code\": \"it:0\",\n \"count\":
73
+ 177,\n \"name\": \"Italy\",\n \"selected\": false\n
74
+ \ },\n {\n \"code\": \"us:49\",\n \"count\":
75
+ 173,\n \"name\": \"Greater Los Angeles Area\",\n \"selected\":
76
+ false\n }\n ]\n },\n \"code\": \"location\",\n \"name\":
77
+ \"Location\"\n }]\n },\n \"numResults\": 8450\n}"
78
+ http_version: '1.1'
79
+ recorded_at: Tue, 04 Jun 2013 03:42:37 GMT
80
+ recorded_with: VCR 2.5.0