我正试图在
Spring Social Facebook获得用户位置:
Facebook fb = ((Facebook) connection.getApi()); Page pg = fb.pageOperations().getPage(fb.userOperations().getUserProfile().getLocation().getId());
问题是pg.getLocation()返回null.
我也尝试过
fb.fetchObject(fb.userOperations().getUserProfile().getLocation().getId(),org.springframework.social.facebook.api.Location.class)
但它只填充名称,而不是国家或其他领域.
尝试使用Graph API Explorer /v2.6/112286918797929?fields=id,name,location按预期方式返回:
{ "id": "112286918797929","name": "Sacele","location": { "city": "Sacele","country": "Romania","latitude": 45.6167,"longitude": 25.6833 } }
这是Spring Social Facebook的问题吗?
我正在使用Spring Social 1.1.4和Spring Social Facebook 2.0.3.
我也尝试了Spring Social for Facebook – get user location,但遗憾的是并非所有的地方都遵循名称惯例City,Country,其中一些仅包括名称中的城市,而不是国家.另外你怎么能得到地理坐标?