Hey community,
I´ve got a question concerning the spring Facebook API. In Facebook there are the "checkins", that can be retrieved over the Spring Facebook API. But, as I have read, these Checkins are deprecated, and are being replaced by the possibility to attach Places to a Status-Posts. Now I want to get the Place-Information (that I can retrieve over the Graph API Explorer easily) over the Spring Facebook API. Maybe I overlooked the functionality, but when i get the statusposts by calling
, my facebook test-posts containing places are almost empty, only containing an ID, an Author (from) and a type (STATUS). Also
doesn´t return the status-posts containing the geographic information.
Is it just impossible to retrieve these place-Information from a status post using the facebook API?
Thanks for your help in advance!
I´ve got a question concerning the spring Facebook API. In Facebook there are the "checkins", that can be retrieved over the Spring Facebook API. But, as I have read, these Checkins are deprecated, and are being replaced by the possibility to attach Places to a Status-Posts. Now I want to get the Place-Information (that I can retrieve over the Graph API Explorer easily) over the Spring Facebook API. Maybe I overlooked the functionality, but when i get the statusposts by calling
Code:
facebook.feedOperations().getStatuses(0, 1000);
Code:
facebook.placesOperations().getCheckins(0, 10000);
Is it just impossible to retrieve these place-Information from a status post using the facebook API?
Thanks for your help in advance!