I want to do server side registration. I have coordinates that are lat-long; I know the name and street address of the business. Is there any way to get placeId for parameter Parameter.with ("place", 1234)?
FacebookType publishCheckinResponse = facebookClient.publish("me/checkins",
FacebookType.class, Parameter.with("message", "I'm here!"),
Parameter.with("coordinates", coordinates), Parameter.with("place", 1234)));
source
share