curl \
-H "Authorization: Bearer API_KEY" \
-X GET https://api.ayrshare.com/api/brand/search/facebook?search=facebook
const API_KEY = "API_KEY";
fetch("https://api.ayrshare.com/api/brand/search/facebook?search=facebook", {
method: "GET",
headers: {
"Authorization": `Bearer ${API_KEY}`
}
})
.then((res) => res.json())
.then((json) => console.log(json))
.catch(console.error);
import requests
headers = {'Authorization': 'Bearer API_KEY'}
r = requests.get('https://api.ayrshare.com/api/brand/search/facebook?search=facebook', headers=headers)
print(r.json())
{
"facebook": [
{
"id": "7640348500",
"isUnclaimed": false,
"link": "https://www.facebook.com/7640348500",
"location": {
"city": "New York",
"country": "United States",
"latitude": 40.782910059774,
"longitude": -73.959075808525,
"state": "NY",
"street": "1071 5th Ave",
"zip": "10128"
},
"name": "Solomon R. Guggenheim Museum",
"verificationStatus": "blue_verified"
}
]
}
Search
搜索 Facebook Pages
基于搜索查询在 Facebook Pages 中搜索
GET
/
brand
/
search
/
facebook
curl \
-H "Authorization: Bearer API_KEY" \
-X GET https://api.ayrshare.com/api/brand/search/facebook?search=facebook
const API_KEY = "API_KEY";
fetch("https://api.ayrshare.com/api/brand/search/facebook?search=facebook", {
method: "GET",
headers: {
"Authorization": `Bearer ${API_KEY}`
}
})
.then((res) => res.json())
.then((json) => console.log(json))
.catch(console.error);
import requests
headers = {'Authorization': 'Bearer API_KEY'}
r = requests.get('https://api.ayrshare.com/api/brand/search/facebook?search=facebook', headers=headers)
print(r.json())
{
"facebook": [
{
"id": "7640348500",
"isUnclaimed": false,
"link": "https://www.facebook.com/7640348500",
"location": {
"city": "New York",
"country": "United States",
"latitude": 40.782910059774,
"longitude": -73.959075808525,
"state": "NY",
"street": "1071 5th Ave",
"zip": "10128"
},
"name": "Solomon R. Guggenheim Museum",
"verificationStatus": "blue_verified"
}
]
}
基于搜索查询在 Facebook Pages 中进行搜索。
常用于 @提及 的输入自动补全(typeahead)。
响应为一个对象数组,包含 Page 的 id、link、name 和 location。
仅当 Page 拥有公开位置时,才会返回
location 字段。
Header Parameters
Query Parameters
用于按名称查找 Facebook Pages 的搜索查询。
curl \
-H "Authorization: Bearer API_KEY" \
-X GET https://api.ayrshare.com/api/brand/search/facebook?search=facebook
const API_KEY = "API_KEY";
fetch("https://api.ayrshare.com/api/brand/search/facebook?search=facebook", {
method: "GET",
headers: {
"Authorization": `Bearer ${API_KEY}`
}
})
.then((res) => res.json())
.then((json) => console.log(json))
.catch(console.error);
import requests
headers = {'Authorization': 'Bearer API_KEY'}
r = requests.get('https://api.ayrshare.com/api/brand/search/facebook?search=facebook', headers=headers)
print(r.json())
{
"facebook": [
{
"id": "7640348500",
"isUnclaimed": false,
"link": "https://www.facebook.com/7640348500",
"location": {
"city": "New York",
"country": "United States",
"latitude": 40.782910059774,
"longitude": -73.959075808525,
"state": "NY",
"street": "1071 5th Ave",
"zip": "10128"
},
"name": "Solomon R. Guggenheim Museum",
"verificationStatus": "blue_verified"
}
]
}
⌘I
