gpt4 book ai didi

javascript - 使用 javascript API 执行 facebook 搜索

转载 作者:数据小太阳 更新时间:2023-10-29 05:30:45 26 4
gpt4 key购买 nike

我有一个用户的电子邮件,我想使用 javascript api 在 Facebook 中搜索他们。

我知道我需要一些东西

FB.api('/search', {q: 'user@email.com', type: 'user'}, function(response) {
//Handle response
});

但这似乎不起作用,我什至没有得到回应。

我也尝试过将它放在 FB.login() 调用中和/或之后,但由于某种原因失败了。

有什么建议吗?他们关于如何使用它的文档非常模糊。

编辑:

这里是所有合适的代码:

<div id="fb-root"></div>
<script type="text/javascript" >
FB.init({
appId: 'apikey', //Actual API key removed for obvious reasons
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true, // parse XFBML
oauth: true // enable OAuth 2.0
});
</script>

<script type="text/javascript" >
FB.login(function (response) {
if (response.authResponse) {
FB.api('/search', {q: 'user@email.com', type: 'user'}, function(response) {
{
alert(response);
});
}
else {
alert(response.toString());
}
});
</script>

最佳答案

var urlCall = "/search?q=Bamboo&type=page&access_token=";
FB.api(urlCall, function(response) {
//you code to execute
});

经过一番挖掘终于找到了这个。

关于javascript - 使用 javascript API 执行 facebook 搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7423392/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com