You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was comparing the records on Glassdoor with this API. I searched records for Facebook. On the glassdoor, the positions are showing more compare to this API. Am I searching wrong or missing something? Or is there any issue with API?
The text was updated successfully, but these errors were encountered:
Right now, each API call is making a single request to glassdoor and only pulling the direct results from the main company profile page. There's a second, separate page containing an exhaustive list of jobs (that you speak of) which also can be crawled.
You can use this to compile a list of company name for which to search using the glassdoor API. Also, see issue #8 (fixed) which allows you to re-search for companies using "suggestions" like so ...
$ python
>>> from glassdoor import gd
>>> data = gd.get('like.co')
{'error': 'company not found',
'suggestions': [(u'Like.com', u'Like-com-Interview-Questions-E239030.htm'),
(u'Alu Like', u'Alu-Like-Interview-Questions-E327103.htm'),
(u'Some Like It Hot', u'Some-Like-It-Hot-Jobs-E564982.htm'),
(u'Like VN', ''),
(u'Like The Pros', ''),
(u'LIKE School', ''),
(u'Clicks and Likes', ''),
(u'LMO, LIKE MY OWN', ''),
(u'Nobody Likes Onions', '')]}
>>> if data.get('suggestions'):
... data = gd.get(company_slug=data['suggestions'][0])
{'ceo': {'%approval': None, 'avatar': '', 'name': '', 'reviews': 0},
'meta': {'connections': 0,
'location': u'Foster City, CA',
'logo': None,
'name': u'Like.com',
'reviews': 4,
'score': None,
'size': [16, 50],
'website': u'www.like.com'},
'salary': [],
'satisfaction': {'ratings': 0, 'score': None}}
I was comparing the records on Glassdoor with this API. I searched records for Facebook. On the glassdoor, the positions are showing more compare to this API. Am I searching wrong or missing something? Or is there any issue with API?
The text was updated successfully, but these errors were encountered: