我试图在Facebook上使用手机号码进行搜索,我首先尝试使用请求& urllib,但这不起作用,接下来,我尝试使用Facebook API,但这也不起作用,我使用python,这个输入在Python行中:
facebook.GraphAPI('token').request('search', {'q': 'cellphonenumber', 'type': 'user'})
以及:
requests.get("https://graph.facebook.com/search?access_token=token&q=cellphonenumber&type=user")
和...
facebook.GraphAPI('token').get_object('search?q=cellphonenumber&type=user')
另一个代码再次无效......
其中一些条目的输出是:
回溯(最近一次呼叫最后一次):文件"",第1行,in 文件" build / bdist.linux-i686 / egg / facebook / init .py", 第115行,在get_object文件中 " build / bdist.linux-i686 / egg / facebook / init .py",第293行, 请求facebook.GraphAPIError:(#200)应用程序没有 能够进行此API调用
或者
回应[403]。 (在请求使用的情况下。)
或者
回溯(最近一次呼叫最后一次):文件"",第1行,in 文件" build / bdist.linux-i686 / egg / facebook / init .py", 第115行,在get_object文件中 " build / bdist.linux-i686 / egg / facebook / init .py",第293行, 请求facebook.GraphAPIError:发生了未知错误。
有些想法?我真的需要这个...
P.D:在所有代码中,我将" token"而不是我的令牌。