예제 #1
0
# -*- coding: utf-8 -*-

import common
from Config import Config
from Facebook import Facebook, Graph

username = Config()['facebook']['username']
password = Config()['facebook']['password']


fb = Facebook()
fb.login(username, password)
token = fb.get_token()
graph = Graph(token)


def test_get_uid():
    assert isinstance(graph.getUID(), int)
	def retrievePhotos(self):
		fb = Facebook(self.user)
		fb.login()
		firstPhotoId = fb.getFirstPhotoId()
		photoSetId = fb.getPhotoSetId()
		fb.downloadPhotos(firstPhotoId, photoSetId)