0

I created a FB App programatically using this:

https://www.facebook.com/connect/create_app.php?api_key=APP_ID&name=AP_NAME

now I need to get the APP ACCESS TOKEN that can be retrieved using the following code:

$APPLICATION_ID = "APP_ID";
$APPLICATION_SECRET = "APP_SECRET";

$token_url =    "https://graph.facebook.com/oauth/access_token?" .
                "client_id=" . $APPLICATION_ID .
                "&client_secret=" . $APPLICATION_SECRET .
                "&grant_type=client_credentials";
$app_token = file_get_contents($token_url);

for that, I obviously need to have first the APP_SECRET...

So is there any workaround to get the APP_SECRET of the newly created app?

4

2 回答 2

2

您的 AppSecret 用于“安全目的”,不应以这种方式检索。

oauthAppsecret 用于按照握手机制的定义对您的请求进行加密和解密。

它不应该具有“通过 api 的实时机制”来获取它:您是否意识到它可能产生的安全问题?

尝试从其他角度寻找secret_key,这是一种没有人可以在网络上拥有的信息......

希望对您的愿景/需求有所帮助

于 2012-08-27T16:26:35.437 回答
1

您必须前往Facebook 开发者并复制这两个密钥:在此处输入图像描述

于 2012-08-27T16:10:43.860 回答