我正在尝试通过Facebook图形API模拟在Facebook中搜索用户。我正在使用facebook-sdk
以下是我的代码。
import facebook
access_token = "MY_ACCESS_TOKEN"
graph = facebook.GraphAPI(access_token)
def try_query(string):
query = 'search/?q=' + string + '&type=user'
data = graph.request(query)
return len(data['data'])
#My profile
print (" Pratibha Jagnere : ",try_query("Pratibha Jagnere"))
# some random name
print (" Stephen Foster : ",try_query("Stephen Foster"))
它给我低于输出。
Pratibha Jagnere : 0
Stephen Foster : 23
我不明白为什么它没有为我自己的名字给出结果。任何帮助将非常感激。