Ben üç görüntüleri image1.jpg, image2.jpg, image3.jpg.I tek post.Below kodum olduğu gibi bunları yüklemek için çalışıyorum:FaceBook Python SDK'yı kullanarak birden çok görüntü nasıl yüklenir?
import facebook
graph = facebook.GraphAPI(oauth_access_token)
profile = graph.get_object("me")
friends = graph.get_connections("me", "friends")
file1 = open("image1","rb")
file2 = open('image2', 'rb')
graph.put_photo(file1, 'Look at this cool photo!')
graph.put_photo(file2, 'Look at this cool photo!')
Ama ayrı ayrı mesajlar olarak yüklenen olsun Birden çok resmi tek bir gönderiye nasıl yüklerim?