如何从 FB 图形 API 响应获取 access_token

发布于 2024-10-10 14:12:40 字数 648 浏览 3 评论 0原文

我正在从 FB 图形 API 生成 access_token。

一切都工作正常,并且它在回调 url 上给了我 access_token

谁能告诉我应该如何获取此令牌以在我的 php 脚本中使用 url。

响应后的网址为:

http: //www.mysite.com/company/index.php?mod=details#access_token=170791786296375|4c9eaa63ed2bad5ac51662d4-1394587960|4ndIjiCJaAnqLSe8wOo_HaxUC90&expires_in=0

我正在努力度过难关

$_REQUEST['access_token']

Bu 不能这样。任何人都可以在这件事上帮助我吗?

I am generating access_token from FB graph API.

Every thing is working fine and its giving me access_token on call back url

Can anyone tell me how should i get this token for url to use in my php script.

After response url is :

http://www.mysite.com/company/index.php?mod=details#access_token=170791786296375|4c9eaa63ed2bad5ac51662d4-1394587960|4ndIjiCJaAnqLSe8wOo_HaxUC90&expires_in=0

I am trying to get by

$_REQUEST['access_token']

Bu can't get like this way. Can any one help me in this matter?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

情栀口红 2024-10-17 14:12:40
$access_token = "";
if(preg_match("/access_token=([^&]+)/", $_SERVER['QUERY_STRING'], $matches)) {
    $access_token = $matches[1];
}

或者

$access_token = $_REQUEST['mod'];
$access_token = explode("#", $access_token);
$access_token = str_replace("access_token=", "", $access_token[1]);

类似的东西

$access_token = "";
if(preg_match("/access_token=([^&]+)/", $_SERVER['QUERY_STRING'], $matches)) {
    $access_token = $matches[1];
}

or

$access_token = $_REQUEST['mod'];
$access_token = explode("#", $access_token);
$access_token = str_replace("access_token=", "", $access_token[1]);

or something like that

又怨 2024-10-17 14:12:40

如果你这样做,那你就错了。
您正在使用客户端方法将数据发送到服务器。
您应该使用服务器端方法。

if your doing it this way, you are doing it wrong.
You are using the client side methods to send data to the server.
You should be using the server side methods.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文