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 suchen
Facebook Pages anhand einer Suchanfrage durchsuchen
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"
}
]
}
Suchen Sie nach Facebook Pages anhand einer Suchanfrage.
Wird häufig für die Typeahead-Vervollständigung von Erwähnungen verwendet.
Die Antwort ist ein Array von Objekten mit der ID, dem Link, dem Namen und dem Standort der Page.
Das Feld
location wird nur für Pages mit öffentlichen Standorten zurückgegeben.
Header-Parameter
Query-Parameter
Suchanfrage, um Facebook Pages nach Namen zu finden.
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
