是否有权限我可以添加到我的应用程序的身份验证令中以获取我的街道地址?我可以看到如何获得当前的城市",但除此之外;如果没有抓取HTML,我就不知道如何获得街道地址。
答案 0 :(得分:0)
您可以使用fql查询当前位置。这将返回如下内容:
{
"data": [
{
"current_location": {
"resultType": {
"fieldTypes": {
"street": {
"strict": false
},
"city": {
"strict": false
},
"state": {
"strict": false
},
"country": {
"strict": false
},
"zip": {
"strict": false
},
"latitude": {
"min": null,
"max": null,
"strict": false
},
"longitude": {
"min": null,
"max": null,
"strict": false
},
"id": {
"min": null,
"max": null,
"strict": false
},
"name": {
"strict": false
}
},
"includeNullFields": false
},
"street": null,
"city": "Beirut",
"state": "Beyrouth",
"country": "Lebanon",
"zip": "",
"latitude": null,
"longitude": null,
"id": 106188806084417,
"name": "Beirut, Lebanon"
}
}
]
}
你的意思是那样的吗? 希望它有所帮助