Instead of:
images = client.fetchThreadImages("")
for image in islice(image, 20):
print(image.large_preview_url)
It should be "images" instead of "image" in https://fbchat.readthedocs.io/en/stable/intro.html#fetching-information
for image in islice(images, 20):
Instead of:
images = client.fetchThreadImages("")
for image in islice(image, 20):
print(image.large_preview_url)
It should be "images" instead of "image" in https://fbchat.readthedocs.io/en/stable/intro.html#fetching-information
for image in islice(images, 20):