Is that possible to search peoples for multiple companies at a time using linkedin jsapi
iam using below url for searching
its giving zero people
"/people-search:" +
"(people:(first-name,last-name,relation-to-viewer,picture-url,public-profile-url,positions),facets:(code,buckets:(name,code,count)))" +
"?facets=network&facet=network,F,S&count=3¤t-company=true&sort=distance&company-name=ibm,infosys,oracle";
If it's just a few company IDs you need, then use the linkedin Company ID Lookup tool to get the IDs of the companies, then conduct a faceted company search as follows:
"/people-search:" + "(people:(first-name,last-name,relation-to-viewer,picture-url,public-profile-url,positions),facets:(code,buckets:(name,code,count)))" + "?facets=network,current-company&facet=current-company,ID1,ID2,ID3&facet=network,F,S&count=3¤t-company=true&sort=distance&company-name=ibm,infosys,oracle";
Replace ID1, ID2 and ID3 with the IDs of the companies you looked up with the above tool.
If you have a lot of company IDs to fetch, then conduct a company search via the API to grab the company IDs programmatically, then proceed to people search.
Related
I am trying to use the adAnalyticsV2 with the statistics finder method to pull reports for my campaigns segmented by campaign + campaign group + creative.
https://learn.microsoft.com/en-us/linkedin/marketing/integrations/ads-reporting/ads-reporting#statistics-finder
It works fine for campaigns and campaign groups, I manage to find them in pivotValues and get their name. However for the creative name/title/subject/whatever, this is a different story.
Result from a creative pivot (sponsored video)
I don't see how I can retrieve the same title/name/subject that I can see via the web interface.
Web Interface adsets details
I tried many combinations with the projection/fields fields but without success so far :(.
Thanks,
You may need to project contents in the ugc API. like below:
variables(data((,directSponsoredContent, durationMicro, userGeneratedContentPost~(*)))))))
I have been learning Arangodb and graph traversal using AQL, and I have looked at some of the examples that can be found online like flight paths, actors and movies, but I have trouble wrapping my head around writing what I initially thought would be a simple product recommendation experiment where a customer is recommended products he/she has not bought based on other customers' (who have made similar purchases) purchases.
This is what I managed to achieved to so far, retrieving products that other customers' who have purchased the same product as the current customer
FOR products IN 1..1 OUTBOUND 'customers/118685' bought
FILTER products._id LIKE "products/%"
FOR other_buyers IN 1..1 INBOUND products bought
FILTER other_buyers._id != 'customers/118685'
FOR other_buyers_products IN 1..1 OUTBOUND other_buyers bought
return other_buyers_products
Also, I haven't reached the stage where the recommendation would could be refined to customers who have made more similar purchases (i.e. based on higher count) with the current customer. Appreciate advice or helpful examples.
this is a very open question. a more precise question would result in more and better answers... but i will give it a try.
you can express your current query in a more condense way:
FOR product IN 3..3 ANY 'customers/1' purchases
RETURN DISTINCT product
counting occurrences of a product can be added easely with COLLECT:
FOR product IN 3..3 ANY 'customers/1' purchases
COLLECT pid = product._id WITH COUNT INTO count
RETURN { pid, count }
this is still a very naive approach. you will end up with recommendations like "you once bought banana, you should by toilet paper", because everybody bought those things eventually. you can improve your results by not just saving what product a customer bought, but also when. Then you will be able to find out what products are bought together often, f.e. a flashlight and batteries.
look around on the internet for further inspiration, f.e. here.
I'm wondering whether it's possible to get (as a company page) list of posts of your employees that contain a certain hashtag?
I've trying to find a module or library (or API) that will let me query a movie database by rating. Rotten Tomatos or IMDb are fine. I have a request for a Rotten Tomatoes API key, and I do have a IMDb one, but I can't find any documemtation on how to query the database and return a list of all movies with a certain rating.
If anyone has a solution, I'd very much appreciate it.
If you want to operate offline, you can consider the IMDbPY library, which allows you to work with both the online and offline set of data of IMDb.
Working offline, basically, you use it to import the plain text data files distributed by IMDb on a SQL database, and then access that data (rating, number of votes and votes distribution are available).
You can't programmatically query movies by rating, but that data is easily accessible from the db itself.
I want to extract LinkedIn group members' email addresses. (Note: I do not own the groups; they are just groups that I am a member of). I could not find anything yet to do so in LinkedIn API. Although I am able to get my current status, update status, friends list.
Around 4 years ago it was possible to get email addresses of members who joined your group if the group was set to private. Now there is no way to access this data apart from being a connection with all of the members of the group or viewing each members profiles and grabbing any email address that they have listed publicly.