Facebook reviews API
Returns reviews from a facebook company
Parameters
url - The URL of the reviewed company
type: string
count - Number of new reviews
type: number
stream - Stream response
type: booleanDefault: false
Return type
reviews
Examples
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import typedclient import asyncio
api = typedclient.connect('API_KEY')
async def main(): reviews = await api.facebook.reviews( url="https://www.facebook.com/PepsiCo/reviews/", count=10 ) print([(review.reviewContent) for review in reviews])
asyncio.run(main())