I would like to know if any preference status updates of Facebook users of a particular region can be fetched?
I am trying to study location based preferences on brand or likings of people of a particular geographical region. It can be either likes or status updates by searching key words. Is there any way to accomplish this other than hadoop?
I do not know where to start, so any answers, pointers or guidance will be much appreciated.
Have you tried looking at the Graph API? http://developers.facebook.com/docs/getting-started/graphapi/
Related
I'm trying to use the Spotify API and I need the id of a specific track but I don't find any solution regarding how to obtain that ID.
Any ideas?
Read a lot of documentation. The information was useful, but I didn't find anything regarding to my topic
Found a pretty simple method. For anyone interested, if you use the desktop app you can drag the name of the song in a text editor and it will give you the id
I am working on a Xamarin iOS project trying to display a list of the most likely locations based on the user's GPS coordinates using either the Place Picker or GMSPlacePickerViewController from the google maps API, as shown in this Swift tutorial.
However I can't seem to find any decent tutorials using C#. I don't want to display the map to users I simply want to retrieve the list of most likely locations based on the coordinates.
Any guidance would be greatly appreciated as I'm at a bit of a loss about how to use the google maps API to achieve this.
Okay answering this for anyone coming after me and trying to do something similar.After lots of searching I have realised it is possible to use the nearbySearch method from the Google Places API Web Service to retrieve a list of addresses near particular coordinates within a specific radius (in metres). You can optionally specify the type of addresses you are searching for, e.g. Restaurants.
Not sure how I missed this but there is a Place Search demo at the bottom of this page;
https://developers.google.com/places/web-service/
Given a facebook username and password, how do I grab the latest status updates from his feed? Moreover, i'd like to know how to get last updates from user profile.
I'm having trouble finding an answer to this question, and I'd like to know whether it could by done using PHP or C# (C# is prefrred). I'd be grateful if anyone could point me to the solution, thanks in advance !
You can easily do that by using the Facebook Graph API in any language. I suggest you should look at the API documentation, specifically the User Reference Doc (you can retrieve any user's status updates using this). It might take some time to understand how it all work, but you can retrieve user information very easily, provided you have the knowledge of a specific language and you understand how the Graph API actually works (there are plenty of example on the developers' website).
Also, you don't even require user's password for this. All you need is the user's id or username and some permissions from that user (or simply an Access Token).
PS: If you have any specific problem in your code, please update your question with some code that you've written till now and I'll be happy to help you with that.
I am building a new website, which you can see at http://www.kristalcapljina.99k.org.
While I have some web design experience, I need help in knowing what I should research to add some specific functionality to the site.
The first bit I want to add is an area where business owners can list their business' information, such as the address or contact information. They should also be able to login later to change the information. I assume this will need some sort of database, but don't know where to begin looking.
Second, I wish to add a map that highlights the locations of these businesses.
Any help direction you can give me to get started would be most appreciated.
You want to embed a Google Map onto your site, using the Google Maps API.
What is the quickest way to make my ASP.NET application location aware? I have seen some API examples that are in C++ and not able to load into an ASP.NET application. Are there other ways to go about this? I just need to be able to get a general location of my users (city level or lower). Getting a ZIP code would be ideal.
Geolocation in ASP.NET MVC made easy.
Geolocation is easier (and cheaper) than you think
Geolocation component for ASP.NET
Found by googling "Geolocation ASP.NET"
The best idea would be GeoLocate the user to his country based on his IP. At the most, It is also possible to track-down the user to his city but the accuracy is always doubtful.You can find some information on this here.
Try googleing for free GEOIP databases. Here is one: link text I've used these db's to get user's general area to determine what marketing is working for customers.
Good Luck!