Foursquare API venue tips endpoint doesn't collect all tips - foursquare

I want to collect all tips from certain venue in foursquare API.
I tried https://developer.foursquare.com/docs/venues/tips venue endpoints, but why it didn't collect all tips?
For example, if i enter '51f34889498e9ce99e5a16fa' as venue id input, it shows that there's 142 tips for that venue, but when i count the tips list, there's only 36 tips that have been successfully collected. If i add parameter limit=500 and offset=100, there's 55 tips that have been collected. Still less than it should.
Anyone have explanation about this phenomenon?

Related

get api to fetch the data of US universities

I want to get some API or database for fetching the data of US universities along with the SAT/ACT scores and minimum score of GRE and TOEFL for each university program. I have also looked up for the same on this site and also googled it, i found some database and APIs but none of them is complete. I found the API at nearbycollege website which gives data of SAT/ACT of 2885 schools but I could not find the GRE/TOEFL/GMAT/IELTS exams minimum scores for the same. Kindly help me find that.
Thanks in Advance
-Bansari

How can we sort "Reviews" by date returned from Product Advertising API?

I'm using Product Advertising API for fetch product reviews by ASIN. Its good. But can we sort product reviews by "Date".
Because I want to display latest review on the top. Is that possible?
Can anybody help me, I stuck here from last few days.
Thanks,
Surinder
This type of call will get top reviews, including some recent.
https://www.amazon.com/reviews/iframe?akid=[AWSAccessKeyId]&alinkCode=xm2&asin=[ASIN]&atag=[ASSOCIATE_TAG]&exp=[DATE]&summary=1&truncate=1000&v=2&sig=[SIGNATURE]
You can experiment with different flags for possible sorting, however Amazon's API document does not detail sort specific parameters:
http://docs.aws.amazon.com/AWSECommerceService/latest/DG/EX_RetrievingCustomerReviews.html

Searching user profiles on Twitter

I found a number of similar questions on SO but they are all are either 2+ years old or aren't exactly what I am looking for.
All I would like to do is obtain a list of twitter users whose bio/profile contains certain terms (scientist, democrat, 'dog lover', etc.).
I've considered using a google site search but so far the results are incredibly noisy.
Any suggestions would be much appreciated!
CS
The Twitter API supports a People Search similar to the website's "Find on Twitter" search feature. Although you can not directly search using only profile descriptions, it appears that the description content is used as part of the search space. If you can think of a way to narrow down your results even further by directly searching the returned users' descriptions, you should be able to do what you're looking for. Check out the Twitter API documentation for more info.
Example:
Try searching for "husband father of three", and you get these results, which obviously are returned because of the profile descriptions.
I have used one tool to search twitter profiles using keywords and many advance filters. I love the information which has been provided by the FollowerSearch tool. The information was very specific, which helps me to analyze the public twitter profiles.
One of the best tools for quickly searching among the 800 million public Twitter accounts in the database is FollowerSearch.
With FollowerSearch, you can quickly conduct searches for Twitter influencers and Twitter bios across its massive database of more than 800 million Twitter profiles. You may look for Twitter profiles based on information like their location, line of work, number of followers, etc.
Twitter Influencer Profile Search
A Twitter bios search will assist you in simplifying the process, whether you're looking for influencers or new talent. You can discover Twitter folks who share your interests. Find out exact information on all the accounts whose bios contain your search term.
Identify key accounts and Twitter influencers that have required terms in their Twitter bios.
Look up new and budding talent.
Find Twitter users with similar interests.
Search Twitter profile or Search Twitter bios for any desired term.
I created a tool that does exactly what your looking for. Find70 let's you search for twitter profiles by their twitter bio. In fact, you can set up as many search filters as you want and define your own weighting for each filter. In your example above, you could search for: scientist, democrat, 'dog lover' and it would return all the accounts that have those in the bio. This can be combined with other filters too. Here it is http://www.find70.com/?t=stack

How to increase Foursquare Venue limit for getting all restaurants from Foursquare Venue API?

I am calling Foursquare Venue API for getting all food venues of London.
Used API is: https://api.foursquare.com/v2/venues/explore?ll=51.51121389999999,-0.11982439999997041&section=xxxx&**limit=11000**&oauth_token=xxxx
It returns always random 100 venues. If I call it next time then it returns same venues instead of unique 100 venues.
How to get unique records for getting all venues? How to get all venues by increasing the limit?
The maximum number of venues returned in an explore query can be found in our documentation: https://developer.foursquare.com/docs/venues/explore
Getting all the food venues in any geographic region isn't really something the Foursquare API is designed to do, but you can get different results if you modify your ll and/or radius params. Please keep in mind our developer policies against scraping though if you choose to do a sweeping approach.

Twitter API: How to get recent tweets from the users the owner of the profile follows

my question may seem a bit complicated but let me clarify. Using Twitter's Api system, I was able to get the 20 most recent tweets of a particular user. However, this isn't really exactly what I wanted. As I am making an iPhone application, it would seem more interesting for the user to see the most recent tweets from other people he follows than tweets he himself has composed. So, is there anyway to get the 20 most recent tweets from users that a particular person follows? If the question is not clear enough please let me know so I can clarify it, thanks :)
You can get up to 800 tweets from the user's followers
https://api.twitter.com/1.1/statuses/home_timeline.json
For example, if you want 20 tweets, but no replies, use
https://api.twitter.com/1.1/statuses/home_timeline.json?count=20&exclude_replies=true
Try getting the ids of the followers
https://dev.twitter.com/docs/api/1.1/get/followers/ids
Should be something like...
/followers/ids.json?screen_name=xxx
or possibly /followers/ids.json?user_id=xxx
Then, get the tweets from those ids
https://dev.twitter.com/docs/api/1.1/get/statuses/user_timeline
/statuses/user_timeline.json?screen_name=twitterapi&count=20

Resources