gpt4 book ai didi

php - 将变量传递到 Facebook iFrame 应用程序 PHP

转载 作者:可可西里 更新时间:2023-11-01 00:10:53 26 4
gpt4 key购买 nike

我认为这是可能的,但我似乎做不到。

我正在做的是将变量传递给 facebook iframe 应用程序。怎么样都没关系,但我一直在尝试几种不同的方法。如果有人有任何想法。

-----编辑--------

是的(到下面),如果其他人寻找这种用途,我找到了这些元素......

创建链接...

$link_params = array(
'item1' => "blah",
'item2' => "blaaaaargh"
);
$encodedParams = urlencode(json_encode( $link_params ));
//added to link as app_data

获取数据...

if (!empty($signed_request) && !empty($signed_request['app_data'])) {
$app_data = json_decode($signed_request['app_data'], true);
} //use in your app from here as $app_data['item1']

最佳答案

实际上有一些东西:signed_request 中的 app_data .文档说:

A JSON string containing the content of a query string parameter also called app_data. Usually specified when the application built the link to pass some data to itself. Only available if your app is an iframe loaded in a Page tab.

这意味着,您只需调用您的应用程序,将 &app_data=... 添加到 url。记得先把参数编码成json。

关于php - 将变量传递到 Facebook iFrame 应用程序 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6714987/

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